Concat Sub or Function no defined

manthony

New Member
Joined
Dec 5, 2016
Messages
40
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
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Does the below work

Code:
Sub trial()
If range("L4") = 0 Then
Sheets("Report").range("A4").Value = Worksheets("Parameters").range("B10").Value & " has no time reported in " & Worksheets("Parameters").range("B12").Value
ElseIf range("L4") <> 0 Then
range("A3").Value = ""
End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,095
Messages
6,123,072
Members
449,093
Latest member
ripvw

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top