How to retrieve data from another table?

Hi There,

I Have three tables USER, TTD and DETAIL TTD. In TTD Table, there are two columns that I want to fill in with data from USER table based on USERMAIL () which is also stored in USER table.

Solved Solved
0 4 5,365
1 ACCEPTED SOLUTION

Hello @Helmi_87, welcome to the Appsheet community!

To search a table using an especific value, you can use the LOOKUP() function.

LOOKUP( find-value , in-dataset , in-column , return-column )

LOOKUP(useremail(),"USER","Email_column","Return_column")

View solution in original post

4 REPLIES 4

Hello @Helmi_87, welcome to the Appsheet community!

To search a table using an especific value, you can use the LOOKUP() function.

LOOKUP( find-value , in-dataset , in-column , return-column )

LOOKUP(useremail(),"USER","Email_column","Return_column")

Thank you @Rafael_ANEIC-PY for your quick response,
I will try to implement and see reference link that you gave.
Thank you very much!

thank you @Rafael_ANEIC-PY for your guidance. it works

One can also use SELECT option

Top Labels in this Space