I'm having trouble with a PowerApps form where my filtered lookup column isn't saving the selected value. Here's my setup:
Preivous Configuration:
Here's my current Items property for the unfiltered version (which worked, but would shows all customers (200+) with no country filtering):
Choices([@'Operational Issues'].'Customer Name')
Filter('Customers',Country.Value = CountryCombo.Selected.Value)
Title
column in the Customers list)Customer
column next to it to fetch DisplayName
from the Customers list)Has anyone encountered this issue before? How can I maintain the country-based filtering while ensuring the selected customer value gets properly saved to the lookup column?
Thanks in advance for any help!
{
Value: CustomerCombo.Selected.Title,
Id:
LookUp(
Customers,
Title = CountryCombo.Selected.Title
).ID
}
{Title: ThisItem.'Customer Name'.Value}
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.