Powerapps: Remove a single value from Lookup type multi select sharepoint column
Patch(
Questions,
LookUp(Questions, ID = 329),// Find the specific record to update
{
DuplicateOf: Filter(
DuplicateOf, // Existing lookup values
ID <> 123 // Replace 123 with the ID of the item you want to remove
)
}
)
Comments
Post a Comment