A. My Table
[TABLE_1]
--------------------------
N | STRING_VARIABLE
--------------------------
1 | cAuthor
B. My Variable
Public cAuthor as string
cAuthor = "Mr. Warnet"
C. My DLookup
MyLookup = DLookup ("STRING_VARIABLE", "TABLE_1", "N = 1")
D. My DLookup Result
MyLookup = "cAuthor"
E. My Question
How to get "Mr. Warnet" as the lookup result directly?
(instead of "cAuthor")
F. Thanks
[TABLE_1]
--------------------------
N | STRING_VARIABLE
--------------------------
1 | cAuthor
B. My Variable
Public cAuthor as string
cAuthor = "Mr. Warnet"
C. My DLookup
MyLookup = DLookup ("STRING_VARIABLE", "TABLE_1", "N = 1")
D. My DLookup Result
MyLookup = "cAuthor"
E. My Question
How to get "Mr. Warnet" as the lookup result directly?
(instead of "cAuthor")
F. Thanks
Last edited: