Using VBA, I export an Excel spreadsheet as a web page.
The source code of the exported html file is quite messed up. There are multiple line breaks in between. For eg:
<td colspan="3" class="xl681522" style="height:17.1pt" height="22">Select X
and Y</td>
<td class="xl731522" style="width:253pt" width="337">Hello World
and my country</td>
How can I tidy up the html source code, like:
<td colspan="3" class="xl681522" style="height:17.1pt" height="22">Select X and Y</td>
<td class="xl731522" style="width:253pt" width="337">Hello World and my country</td>