Importing an excel file

  • Thread starter Thread starter Stephen Doyle
  • Start date Start date
This is probably an Excel question, best asked in the Excel group.

I think it is the 'conversion' from Excel to HTML format that is causing the
problem; you can go into the HTML page and apply the HTML table/cell
borders.

However, you might also try making sure all the cells in the Excel worksheet
have the borders applied to the blank cells.....
 
Blank cells will always collapse in a browser - that is not display
borders etc. You will have to ensure that every cell in the spreadsheet
(or exported HTML) contains at least 2 space characters or a
non-breaking space.

In Front page you can use search and replace to achieve this:
In Code view in your page,

Search for
<p></p>

Replace with
<p>&nbps;</p>

And replace all.
 
Back
Top