< Back

Document Subject: Exporting to Excel Blocks Problem
Hint Short Cut: Add this to your code & documentation to help you find this page.
http://#Excel or http://A555F9/nn.nsf/ByAlias/Excel

When exporting to Excel there are sometimes blocks or squares in the result.




Alternatively use the code below in lotusscript to remove the squares or blocks.

While Instr(temp, chr$(10) )
temp=Left(temp, Instr(temp, chr$(10) )-1) & "%20" & Right(temp, Len(temp) - Instr(temp, chr$(10)))
Wend

might have to do it with chr$(9) as well