Tab text in cell

D

donbowyer

Excel 2003 / Win XP
How can I Tab text in a cell.
Using the Tab key just tabs the Cursor but doesn't take the text with it.
I've tried all combinations of Shift/Ctrl/Alt with Tab but no luck.
I realise a suitable macro could do it, but wanted to avoid.
 
J

Joel

This code will put a REAL tab ascii code 9 into the cell.

="a"&CHAR(9)&"b"

You won't see spaces in the excel spreadsheet, but it will be intrepeted in
other programs as a tab.
 
D

donbowyer

Hi Joel
Many thanks for the input
--
donwb


Joel said:
This code will put a REAL tab ascii code 9 into the cell.

="a"&CHAR(9)&"b"

You won't see spaces in the excel spreadsheet, but it will be intrepeted in
other programs as a tab.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top