DLOOKUP

  • Thread starter Thread starter Guest
  • Start date Start date
Hi pgarcia,

dlookup is similar to a vlookup in Excel, but the syntax is different.
There is no "lookup" function in Access. What are you trying to achieve?

Damian.
 
Will, I do a report eveday and I use the VLOOKUP function to like so:

=VLOOKUP(D2,'[Stations.xls]All Stations'!$B$2:$B$1089,1,FALSE)

In D2 is state and then I look update that state for the city.
 
Something like this:

=dlookup("STATE", "CITYSTATETABLE", "CITY = '" & me.txtCity & "'")

Damian.

pgarcia said:
Will, I do a report eveday and I use the VLOOKUP function to like so:

=VLOOKUP(D2,'[Stations.xls]All Stations'!$B$2:$B$1089,1,FALSE)

In D2 is state and then I look update that state for the city.

Damian S said:
Hi pgarcia,

dlookup is similar to a vlookup in Excel, but the syntax is different.
There is no "lookup" function in Access. What are you trying to achieve?

Damian.
 
Can I do that in a form with a table?

Damian S said:
Something like this:

=dlookup("STATE", "CITYSTATETABLE", "CITY = '" & me.txtCity & "'")

Damian.

pgarcia said:
Will, I do a report eveday and I use the VLOOKUP function to like so:

=VLOOKUP(D2,'[Stations.xls]All Stations'!$B$2:$B$1089,1,FALSE)

In D2 is state and then I look update that state for the city.

Damian S said:
Hi pgarcia,

dlookup is similar to a vlookup in Excel, but the syntax is different.
There is no "lookup" function in Access. What are you trying to achieve?

Damian.

:

Is that like VLOOKUP in excel? And is there just a LOOKUP?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

=IFERROR (DLOOKUP .......) -- Does Access have something like 6
dlookup or iff? 1
DLookup help 6
Access Can't Get Dlookup To Work 1
Problem with my Dlookup 5
simple dlookup 6
Look Up Help 3
Excel vba code to match duplicates 4

Back
Top