I'm experiencing code block here.
What I'd like to do:
- Filter a gallery of mobile phones
- Filtering by the cell phone's battery capacity ( i.e. 3500 mAh)
- Filtering using two or three pickers: 1 list box and 1 single dropdown list, each is connected to a different database
What the issue is:
the code I put in there does not seem to have the right syntax.
Code (right on the "Item" of the gallery called resultDisplayFinal:
Filter(
resultDisplay.AllItems,
Storage >= Max(
UseList.SelectedItems,
storageUse
),
Memory >= Max(
UseList.SelectedItems,
memoryUse
),
Battery >= Max(
Filter(
Table1_1,
frequencyOptions = DayTimeFrequency.Selected
),
batteryUse
),
Display >= Max(
UseList.SelectedItems,
displayUse
),
Camera >= Max(
UseList.SelectedItems,
cameraUse
)
)