Hi
Could someone please tell me what i need to add to this macro so that it will hide the rows within the range where column P is blank rather than the whole row having to be blank?
Thanks in advance
Sub HideBlanks()
'
' HideBlanks Macro
ActiveWindow.SmallScroll ToRight:=-3
ActiveWindow.SmallScroll Down:=-9
Rows("1:1").Select
Selection.EntireRow.Hidden = True
Range("f18:ad129").Select
Selection.Font.Bold = True
Selection.Font.Bold = False
End Sub
Could someone please tell me what i need to add to this macro so that it will hide the rows within the range where column P is blank rather than the whole row having to be blank?
Thanks in advance
Sub HideBlanks()
'
' HideBlanks Macro
ActiveWindow.SmallScroll ToRight:=-3
ActiveWindow.SmallScroll Down:=-9
Rows("1:1").Select
Selection.EntireRow.Hidden = True
Range("f18:ad129").Select
Selection.Font.Bold = True
Selection.Font.Bold = False
End Sub