Hello,
I have been struggling with this issue for some time so I decided to open a new thread. I have a form for a list with 2 look up columns (State and Property)to another list in it. The selection in the first look up(State) determines what values are available in the second look up field(Property). I've been able to make this part of the form work but whenever a user selects a Property and submits their form, a completely different property is saved to the list. Formulas I currently have are below:
State Items property:
Distinct(Sort('Master Property List', State),State)
State Update property:
{
Id: LookUp ('Master Property List', State = DataCardValue20.Selected.Result, ID),
Value: DataCardValue20.Selected.Result
}
Property Items property:
Filter ('Master Property List', State = DataCardValue20.Selected.Result).'Property (PIM Short Name)'
Property Update property:
{
Id: LookUp('Master Property List', State = DataCardValue20.Selected.Result, ID),
Value: DataCardValue21.Selected.'Property (PIM Short Name)'
}
Thank you for any help.