Help

Re: Update lookup field using typecast?

Solved
Jump to Solution
1545 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Gustavo_VD
6 - Interface Innovator
6 - Interface Innovator

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!

1 Solution

Accepted Solutions
Erin_OHern
6 - Interface Innovator
6 - Interface Innovator

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!

See Solution in Thread

2 Replies 2
Erin_OHern
6 - Interface Innovator
6 - Interface Innovator

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!

Thank you @Erin_OHern! That makes sense.