Mam makro, które działa idealnie - z tym wyjątkiem, że muszę je uruchomić ręcznie.
Nie mogę wymyślić, jak ma działać automatycznie, gdy zmieniam wartości w innych komórkach.
Sub MonthlyMaintHideRowsWithZeroDollars()
' This Macro reads down the dollar column and hides rows with $0
' so that they do not pull into the proposal
If Range("B7").Value = "Hide" Then
Rows("7:7").EntireRow.Hidden = True
ElseIf Range("B7").Value = "Show" Then
Rows("7:7").EntireRow.Hidden = False
End If
End Sub
microsoft-excel-2010
vba
Ed Regis
źródło
źródło
sub
aend sub
. Zredagowałem post