Hi,
Using below code to hide rows based on column A if the value does not equal 1
Is there a way I can use this code to hide some columns ?
Any help would be appreciated
Regards,
Humayun
Using below code to hide rows based on column A if the value does not equal 1
Code:
Sub hide()
Range("A1", Range("A" & Rows.Count).End(xlUp)).AutoFilter 1, "1", , , 0
End Sub
Is there a way I can use this code to hide some columns ?
Any help would be appreciated
Regards,
Humayun