If I want to make rows 24, 25, & 28 not visible if cell b7+f7+j7=0 what is the best way to do this? I think I can incorporate into an existing macro but I don’t know how to write the code… I thought it would it be close to this but I keep getting a syntax error
IF wsh.Range(“a24”).Value = “0” AND wsh.Range(“d24”).Value = “0” AND wsh.Range(“g24”).Value = “0” Then wsh.Range(“A24:A25”).EntireRow.Hidden = true AND wsh.Rows(28).Hidden = True