Hi, I am trying to get this if statement with a concat formula to work, but I keep getting the message "Sub or Function not defied." The worksheet where I am trying to get this formula to run on is titled "Report." Thank you in advance for the help.
Below is the code
If Range("L4") = 0 Then
Sheets("Report").Range("A4").Formula = Concat(Worksheets("Parameters").Range("B10") & " has no time reported in " & Worksheets("Parameters").Range("B12"))
ElseIf Range("L4") <> 0 Then
Range("A3").Value = ""
End If
Below is the code
If Range("L4") = 0 Then
Sheets("Report").Range("A4").Formula = Concat(Worksheets("Parameters").Range("B10") & " has no time reported in " & Worksheets("Parameters").Range("B12"))
ElseIf Range("L4") <> 0 Then
Range("A3").Value = ""
End If