I am trying to come up with the code that will hide columns for a material summary sheet if the total for that column is zero. (ie if that column is not used i want to hide it). see the attached image as an example.

i have a simple If code that works but my spreadsheet has 60 columns of data that would need to be checked and i wanted to see if there was a faster way than what i have:
Sub Button_HideColumns_Unused()
'
'Button_HideColumns_Unused
'Hides all the columns that are not used
'
If Range("I367").Value = 0 Then ActiveSheet.Range("I:I").EntireColumn.Hidden = True
If Range("j367").Value = 0 Then ActiveSheet.Range("j:j").EntireColumn.Hidden = True
If Range("k367").Value = 0 Then ActiveSheet.Range("k:k").EntireColumn.Hidden = True
If Range("l367").Value = 0 Then ActiveSheet.Range("l:l").EntireColumn.Hidden = True
End Sub
I was looking into using Case but i know very little about vba so any help would be great!