Hide Columns

mathsbeauty

Board Regular
Joined
Apr 23, 2011
Messages
89
Hello! I am new here. I am learning macros in excel. I am stuck with the following situation. I need macro which:
i) Shows column C and D.
ii) Shows column F but those cells which contain "NO" in column F are not shown.
iii) All other columns are hidden.
Thus the problem is to hide all columns except C, D and F and to hide those cells in F which contains "NO".

I hope to get some help from experts. I will be really thankful for the help that I may get.
 
Hello! This code seems to be working for my problem:
Code:
Sub Macro1()
    Cells.EntireColumn.Hidden = True
    Range("C:D").EntireColumn.Hidden = False
    Range("F:F").EntireColumn.Hidden = False
    Columns("F:F").Select
    Selection.AutoFilter
    ActiveSheet.Range("F:F").AutoFilter Field:=1, Criteria1:="<>NO"
    Application.Goto [a1]
End Sub
 
Upvote 0

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Had :F missing in the suggested code, that's why it didn't work,

Rich (BB code):
Sub test()
    Cells.EntireColumn.Hidden = True
    Range("C:D", "F:F").EntireColumn.Hidden = False
    ActiveSheet.[F1].AutoFilter Field:=1, Criteria1:="<>no"
    Application.Goto [a1]
End Sub
 
Upvote 0
Hello! Your code works, but instead of autofiltering column F it autofilters column C. Thanks for all your efforts.
 
Upvote 0

Forum statistics

Threads
1,224,550
Messages
6,179,462
Members
452,915
Latest member
hannnahheileen

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top