ฉันมีมาโครที่ทำงานได้อย่างสมบูรณ์ - ยกเว้นว่าฉันต้องเรียกใช้ด้วยตนเอง
ฉันไม่สามารถหาวิธีที่จะให้มันทำงานโดยอัตโนมัติเมื่อฉันเปลี่ยนค่าในเซลล์อื่น
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