I want to automatically hide columns K:Q when the condition of cell C3 is "No Report". C3 is a validation list box with the following options; Weekly, Monthly, Year To Date, Contract To Date, No Report.
There are also date range inputs for the report, so i have a macro which refreshes the whole workbook once these other inputs have been selected.
The code i have is:
What would i need to add to this to have it hide/unhide columns k:q given the condition of C3? (Hide if it is "No Report", Show if it is not "No Report")
Thanks
There are also date range inputs for the report, so i have a macro which refreshes the whole workbook once these other inputs have been selected.
The code i have is:
Code:
Sub Update()
'
' Update Macro
ActiveWorkbook.RefreshAll
End Sub
What would i need to add to this to have it hide/unhide columns k:q given the condition of C3? (Hide if it is "No Report", Show if it is not "No Report")
Thanks