Hi, I've got a basic question...
On a report i'm building i want to refer to a particular cell in a query,
Let's say the query name is qry1 and I want to refer to the 3rd column and 2nd row. What should the code look like?
I'm also coding the same stuff in VBA, i found this 'Dlookup' function but not sure how to use it...
Can anyone help?
This is what I'm trying and failing...
=[Queries]![qry1]![Column3]
If i use DLookup, what should the code look like?
Dim Value1 as String
Value1 = DLookup([Column3], [Queries]![qry1], cell.A1)?
thanks so much!!
On a report i'm building i want to refer to a particular cell in a query,
Let's say the query name is qry1 and I want to refer to the 3rd column and 2nd row. What should the code look like?
I'm also coding the same stuff in VBA, i found this 'Dlookup' function but not sure how to use it...
Can anyone help?
This is what I'm trying and failing...
=[Queries]![qry1]![Column3]
If i use DLookup, what should the code look like?
Dim Value1 as String
Value1 = DLookup([Column3], [Queries]![qry1], cell.A1)?
thanks so much!!