This formula works fine but it returns blanks as 0s, that messes up some condisional formating. I read where "" in the formula will stop the 0s from being returned? If so where would I insert them? Thanks
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Application.Intersect(Target, Range("P:P,B:B")) Is Nothing Then
With ThisWorkbook
.Sheets("Sheet2").Range("E3:E24").Value = .Sheets("Sheet3").Range("E3:E24").Value
End With
End If
End Sub