Jedi wrote:
> I've got an Acess table that I need to output. Currently, I just move each
> row to the cell and then publish...
One fancy trick I've heard of is to take your spread sheet, add a new
column at the front containing:
<tr><td>
<tr><td>
<tr><td>
.... etc ...
and one at the end containing:
</td></tr>
</td></tr>
</td></tr>
.... etc ...
and then *between* each of your regular data columns:
</td><td>
</td><td>
</td><td>
.... etc ...
So that a table like this:
Month Days
July 31
Feb 28.25
Nov 30
becomes:
<tr><td> Month </td><td> Days </td></tr>
<tr><td> July </td><td> 31 </td></tr>
<tr><td> Feb </td><td> 28.25 </td></tr>
<tr><td> Nov </td><td> 30 </td></tr>
Then export the file as tab-seperated values.
That should get you close.
--
Toby A Inkster BSc (Hons) ARCS
Contact Me -
http://www.goddamn.co.uk/tobyink/?page=132