Can someone explain what this code is doing? thanks in advance.
Code:
[FONT=Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif]Private Sub Worksheet_Change(ByVal Target As Range)
'Updateby Extendoffice 20160725
Dim xCell As Range
If Target.Address <> Range("C54").Address Then Exit Sub
Application.ScreenUpdating = False
For Each xCell In Range("D7:S7")
xCell.EntireColumn.Hidden = (xCell.Value > Target.Value)
Next
Application.ScreenUpdating = True
End Sub[/FONT]