Disappearing Columns in Excel that aren't "hidden"

G

Guest

I have quite a large workbook in Excel. Columns A, B, and C each have data in them, but for some reason A and/or B has disappeared. I try to resize those columns because maybe they went to 0 but it will never give the resize cursor. I know these cells aren't "hidden" because if I'm in a cell in column C and hit the left arrow, it puts me into the B cell and displays it's contents on the input line up top. Then I can hit left again and get into the A cells.
 
J

jeff

HI,

this should get them back if all else is OK.

Sub SetWidth()
ActiveSheet.Range("$A:$B").ColumnWidth = 20
End Sub

jeff
-----Original Message-----
I have quite a large workbook in Excel. Columns A, B,
and C each have data in them, but for some reason A
and/or B has disappeared. I try to resize those columns
because maybe they went to 0 but it will never give the
resize cursor. I know these cells aren't "hidden"
because if I'm in a cell in column C and hit the left
arrow, it puts me into the B cell and displays it's
contents on the input line up top. Then I can hit left
again and get into the A cells.
 

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