Special Character

H

Henry

Hi.

I need to add a "tab" as text in a cell. So when i save a file in text,
each line has an additional "tab" imbeded. How can I do it?

Thanks!
 
D

Dave Peterson

It won't look good, but you could use:

="some text" & char(9) & "some more text"
 
Top