I am using VB to populate an Excel Worksheet. Is there a way to have muliple lines of information in an Excel Worksheet? I tried to insert a vbCrLf but that ended up not working. Thanks, Jeremy
Printable View
I am using VB to populate an Excel Worksheet. Is there a way to have muliple lines of information in an Excel Worksheet? I tried to insert a vbCrLf but that ended up not working. Thanks, Jeremy
how are you actually putting the data in?
I fixed it by replacing vbCrLf with Chr(10). Thanks, Jeremy