Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need stair-step formatting in EXCEL

Status
Not open for further replies.

dean12

MIS
Joined
Oct 23, 2001
Messages
273
Location
US
I've got a series of number in the square: A1:C3

Something like:

1 2 3
4 5 6
7 8 9

Now I want to format this so that each row's numbers are shifted to the left to give a stair-step appearance. Something like this:

1 2 3
4 5 6
7 8 9

Any ideas?
 
You could use custom formats:

With normal right-aligned as the default, on row 2 (4,5,6)
use custom format
Code:
"#    "
(Pound sign plus four spaces), and on row 2 (7,8,9) use custom format
Code:
"#        "
(Pound sign plus eight spaces.)
 
Yes, that works - By golly I would have sworn that I tried that and found that the rightside blanks were stripped. Guess not. Thanks for correcting me!!!!!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top