hello,

To hide some columns, I'm now using this VB code;

Private Sub CommandButton4_Click()
Columns("F:AG").Select
Selection.EntireColumn.Hidden = True
CommandButton1.Activate
End Sub

Now I also want to hide some columns behind AH:AU. So the columns selection
has to be "F:AG" and AV:ZZ, but how do I put that in the code?

Can anybody tell me, it will be very simple but I just don't know!

Gtrz Marc