Hi,
I have a gallery that contains a dropdown for each item. The user will select a value from the dropdown and then select a button that updates the item in the SharePoint list with the selected value via Patch. The dropdown is set to DisplayMode.View after the patch and the default property of the drop down is set to ThisItem.Status.Value so the user can see what was recorded on the list.
The issue I am running into is that the function works fine on any other item in the gallery except the first item. If you select the dropdown value in the first item then select the button to patch, it updates the default value for all the drop downs in the gallery to what was selected. It does not update the list, just the default value for the dropdown. It goes from a blank value to whatever was selected on the first item.
List column where it is patching to is a Choice Column where default value is blank, all fields in this column are blank until patched with the selected value.
Items property of dropdown: [“”,”Current”,”Not Current”, “Current with update”]
For default property I have tried the following with the same results:
- LookUp(SPList, ThisItem.ID=ID, Status.Value)
- ThisItem.Status.Value
- If(IsBlank(ThisItem.Status.Value),Blank(), ThisItem.Status.Value) and conversely If(ThisItem.Status.Value <> Blank(), ThisItem.Status.Value, Blank())
And probably a couple of others I can’t remember at this point, 🤣
If anyone has any suggestions, I truly appreciate it!