View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
pm tlb pm tlb is offline
external usenet poster
 
Posts: 1
Default vb code to hide columns

I have a spreadsheet that multiple people view. I need a macro to hide the
columns that some don't need to see and another macro to unhide the columns.
the macro I created hides columns B-M and I need it to hide F-K. The VB code
currently is

Columns("F:K").Select
Selection.EntireColumn.Hidden = True
End Sub