Jun 01, 2019 10:51 AM
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.
Solved! Go to Solution.
Jun 01, 2019 02:18 PM
Like this:
[Contacts]
table, your {PinCode}
field should be a linked-record field that links [Contacts]
with the [PinCode]
table.[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 the [PinCode]
table.’){PinCode}
for your contact record, {Contacts::City}
and {Contacts::State}
will be populated automatically.Jun 01, 2019 02:18 PM
Like this:
[Contacts]
table, your {PinCode}
field should be a linked-record field that links [Contacts]
with the [PinCode]
table.[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 the [PinCode]
table.’){PinCode}
for your contact record, {Contacts::City}
and {Contacts::State}
will be populated automatically.Jun 03, 2019 10:38 AM
Thank you very much for your reply, this solved my problem. Much appreciated. :thumbs_up: