If column A is invisible?!

J

Jo

Hi,

In a worksheet I have column A is invisible and no matter what I do I
can't see it! "Hide/Unhide" didn't work!

How can I make column A visible?

Thanks,
jo
 
J

JW

You should be able to select from column B over to the row numbers and
then select Format|Column|Unhide
If that doesn;t work for some reason, you can use the code below to
unhide column A:
Sub unhideA()
Columns(1).Hidden = False
End Sub

Or use this code to unhide all columns:
Sub unhideAll()
Columns.Hidden = False
End Sub
 
M

mark

try two things:

1) Make sure Window-Freeze Panes is OFF

2) make sure the column width is not 0.

hit F5
type A1 , hit OK
Format-Column Width
 
J

Jo

try two things:

1) Make sure Window-Freeze Panes is OFF

2) make sure the column width is not 0.

hit F5
type A1 , hit OK
Format-Column Width








- Show quoted text -

Thanks Mark, it is the Window-Freese Panes!
 

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