VBA Code for Hiding Column on Sheet Based on Cell Value

giblahblah

New Member
Joined
Jun 12, 2019
Messages
3
I am BRAND NEW to VBA coding and have tried to figure out how to write what should be a simple code with zero success. I'd like to attach the workbook, but I don't have privileges in this forum.

Summary of goal:

I have one tab called "Instructions TM1" and another tab called "Ops and ADS Summary"

I need code for:

If on the "Instructions TM1" tab cell B37 says “Day_16” then hide columns H, V, AE, and AS on the "Ops and ADS Summary" tab.

If on the "Instructions TM1" tab cell B37 says “Day_21” then unhide columns H, V, AE, and AS on the "Ops and ADS Summary" tab.

I've tried multiple iterations of codes I've found on forums with no luck. Can anyone write out code for this scenario that I can test? Also, any explanations on how Dim functions work is appreciated. I believe not defining variables may be my problem?

Thanks in advance.

-Jeff
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
If on the "Instructions TM1" tab cell B37 says “Day_16” then hide columns H, V, AE, and AS on the "Ops and ADS Summary" tab.

If on the "Instructions TM1" tab cell B37 says “Day_21” then unhide columns H, V, AE, and AS on the "Ops and ADS Summary" tab.
What should happen if that cell says anything else (for example, Day_17, Day_19, etc. or even any other text or numbers)?
 
Upvote 0
Cell B37 is a drop down validation cell, so Day_16 and Day_21 are the only options available for selection.
 
Upvote 0
Hi & welcome to MrExcel.
As you didn't say what should happen if B37 equals anything other than those two values, this will hide the columns if B37 is Day_16 & unhide them for any other value
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
   If Target.CountLarge > 1 Then Exit Sub
   If Target.Address(0, 0) = "B37" Then
      With Sheets("Ops and ADS Summary")
         .Range("H:H,V:V,AE:AE,AS:AS").EntireColumn.Hidden = Target.Value = "Day_16"
      End With
   End If
End Sub
This code needs to go in the "Instructions TM1" code module
 
Upvote 0
This code worked great! Thank you for the quick response. Unfortunately, I don't think I'd ever get to this code on my own. Is there any resource you could point me to that would educate me on the different components within this code?
 
Upvote 0
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
1        If Target.CountLarge > 1 Then Exit Sub
2        If Target.Address(0, 0) = "B37" Then
3           With Sheets("Ops and ADS Summary")
4              .Range("H:H,V:V,AE:AE,AS:AS").EntireColumn.Hidden = Target.Value = "Day_16"
5           End With
6        End If
End Sub
Target is the cell or cells that have been change
1) Checks if more than 1 cell has been changed, if so code exits
2) Checks the address of the cell is B37
4) this Target.Value = "Day_16" evaluates to either TRUE or FALSE depending on whether the target equals Day_16
This result is then passed to the first part of the line & hides/unhides the columns

HTH
 
Upvote 0

Forum statistics

Threads
1,215,203
Messages
6,123,627
Members
449,109
Latest member
Sebas8956

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