Dec 11, 2020 10:41 AM
Is it possible to update the lookup filed on a linked table via the API?
I have a projects table. An a people table.
O the projects table I have a lookup field that grabs the first name from the people table.
Using the API, would I be able to change the name by simply updating the lookup field on the projects table?
Thank you!
Solved! Go to Solution.
Dec 16, 2020 06:54 AM
Hi Gustavo!
This isn’t possible, since a lookup field is a computed field – its value can’t be modified directly. You will instead want to update the Name value in the People table directly, and that change will be reflected in the Lookup field in your Projects table.
I hope this helps!
Dec 16, 2020 06:54 AM
Hi Gustavo!
This isn’t possible, since a lookup field is a computed field – its value can’t be modified directly. You will instead want to update the Name value in the People table directly, and that change will be reflected in the Lookup field in your Projects table.
I hope this helps!
Dec 16, 2020 08:11 AM
Thank you @Erin_OHern! That makes sense.