I hope this request is not to mundane for this forum. I have an excel spreadsheet of data that I would like to format with some basic html code, and then upload that sheet to google docs.
Here is a sample of the spreadsheet:
http://spreadsheets.google.com/pub?key=pAJGKGh0KC96soiK3FBsILQ
The code in question is on worksheet "PlacemarkData" Cell J11
<p><b>Built In:</b> 2000</p>
<p><b>Address</b>
<p>141 N Davidson Rd</p>
<p>Vail, AZ 85641 </p>
<p> <b>Market Value: </b>$513000.00</p>
<p><b>Range:</b>(Low-$454000.00-High-$572000.00)</p>
<p><b>Sale Date:</b> 4/28/2006</p>
<p><b>Sale Amount:</b>$295000.00</p>
This bit of html code (currently) is being produced with a "mail-merge" within word (No laughing please) and then the resulting code is pasted into the google spreadsheet in the appropriate cell.
The data that populates the mail merge is in excel and I'm sure there is a simple VBA macro that could do this easy enough. I tried the concatenate function and the arguments were too long for the entire html code to be concatenated.
columns on the spreadsheet would be as follows
YrBuilt, Address, City, State, ZipCode, MktVal, MktLow, MktHigh, SaleDate, SaleAmt
and may have 100-150 rows of data.
Thanks in advance for being patient with a realtive VBA virgin.