I have a listbox in PowerApps and I need to enable different dropdowns based on each selection of listbox item. I have one dropdown for each listbox items.
I tried the following code on my dropdowns, but it doesn't work and give error *, + is expected at this point in formula
below is the formula I wrote in DisplayMode of the dropdowns:
ForAll(ListBox1_1.SelectedItems, If(ThisRecord.Name="Offce ABC",DisplayMode.Edit,DisplayMode.Disabled));
There are a few ways of doing this depending on how your Dropdown
Items
are setup.Assuming...
Items
in the Listbox and theItems
in each DropdownItems
is a Collection (or a filtered part of a Collection)...you can use the following logic for the
DisplayMode
property of the Dropdowns:Example in action: