Hi,
I'm trying to use the DLookup function, and the quotes around the text are driving me crazy, I just can't get it right. If anyone could help I'd really appreciate it. What I have so far is:
If IsNull(DLookup("[Total]", "qryMyQueryName", "[Name]=" ""FirstName & ' ' & LastName"" And [Total]<>)")) Then
Me.MyGraph.ChartTitle.Text = "My Report Name - No Data to Display"
Else
Me.MyGraph.ChartTitle.Text = "My Report Name"
End If
It's failing at the DLookup, and I know my syntax is wrong - any suggestions?
Kirsti