I have table with pin code, city and state,
Have second table with contacts
In contact record, if I type pin code then how can I get city and state value filled in related field from linked table, IF function not works for me as pin codes are 26k records.
Page 1 / 1
Like this:
- In your
[Contacts]
table, your{PinCode}
field should be a linked-record field that links[Contacts]
with the[PinCode]
table. - In
[Contacts]
, define two lookup fields,{City}
and{State}
. These would be lookups based on the value in{PinCode}
and reference the values in{PinCode::City}
and{PinCode::State}
, respectively. ('{PinCode::City}
’ means ‘the value of the{City}
field in theoPinCode]
table.’) - When you select the proper
{PinCode}
for your contact record,{Contacts::City}
and{Contacts::State}
will be populated automatically.
Thank you very much for your reply, this solved my problem. Much appreciated. :thumbs_up:
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.