Thread: Hiding Columns
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Paul B Paul B is offline
external usenet poster
 
Posts: 709
Default Hiding Columns

Squid, tested in 2003 and this also works, with merge cells from J:L it only
hides K
Columns("K:K").EntireColumn.Hidden = True
--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2000 & 2003

"Squid" wrote in message
news:j4Rkd.76724$HA.33074@attbi_s01...
I figured it out. You must select a cell that is in column K and is not
part of a merged cell. Such as:

Range("K11").Select
Selection.EntireColumn.Hidden = True

"Paul B" wrote in message
...
Squid, try it without selecting it, like this
Columns("K:K").EntireColumn.Hidden = True

--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2000 & 2003

"Squid" wrote in message
news:CWPkd.496469$mD.389336@attbi_s02...
I have a spreadsheet where I recreated a standard form my company uses.
Therefore I needed to merged some rows. There is one column that I would
like to hide from being printed.

If I manually highlight column K, (right click) click Hide. It hides
just column K. no problem.

But if I when use the following code in the BeforePrint event it will
hide more than just column K, I assume because there rows within column
K that are merged.

Private Sub Workbook_BeforePrint(Cancel As Boolean)
Columns("K:K").Select
Selection.EntireColumn.Hidden = True
End Sub

Any suggestions?

TIA
Mike