View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
jeffrey jeffrey is offline
external usenet poster
 
Posts: 8
Default New line vs line break

I'm looking for an alternative to newLine. Currently my code is
written as:
mySheet.getRange("F5").getValue() + newLine +
mySheet.getRange("F6").getValue() + newLine + etc...

Instead of newLine, I just want a line break. newLine is equivalent
to <p in HTML, but I am looking for something like <br. How can I
do that?

Jeffrey