Elookup

REALOLDMAN

New Member
Joined
Feb 5, 2019
Messages
12
I am trying ELoolup and I saw BTW I am self taught
with the exception of help by sites like this
I'm gratful
why ELookup because it gives error msg DLookup no
so
THIS WORKS OUTSIDE A SUB PROC but not a Proc IE:: ELookup
It worked before I changed code but I do dumb things
TblL = "Msdl"
TblH = "Msdh"
RkT = "ML"
RL = DLookup("PCT", TblL, "RkT = [RkT] ")
RH = DLookup("PCT", TblH, "RkT = [RkT] ")


HERE "COMPILE ERROR ByRef argument type missmatch
does not like tblL or tblH
RL = ELookup("PCT", TblL, "RkT = [RkT] ")
RH = ELookup("PCT", TblH, "RkT = [RkT] ")
The table has 2 fields RkT & PCT


I looked at all the ELookup posts and they seem to involve a function
and were complex
do I need a function to return the table byRef?
I understood useing ByRef was not good usally
Thank you
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
I think your syntax is wrong....maybe:
DLookup("PCT", TblL, "[RkT] = 'RTK'")

the last param is the FIELD in brackets, then the value around quotes.
 
Upvote 0

Forum statistics

Threads
1,213,497
Messages
6,113,998
Members
448,541
Latest member
iparraguirre89

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