Hi there,
I'm fairly new to PowerApps, but am keen to get stuck in and make greater use of it.
For training purposes, I am looking to build a simple (I think!) app to calculate the cost of a PowerPlatform solution for our customers, based on their needs.
In light of this, there is a page where you select the Power Platform Product, the usage plan, and then the pricing will be calculated based on the amount of users/licenses required.

The gallery is filtered by the first input, but not the second - and I'm unfortunately lost as to why! From looking back through previous threads, multiple conditions in a filter are possible, but I feel I must be doing something obvious wrong.
Working Filter (Item, Gallery)
Filter(
PowerAppsPricing,
Product = ListBox3.Selected.Result
)
Failing Code (Item, Gallery)
Filter(
PowerAppsPricing,
Product = ListBox3.Selected.Result,
'Usage Plan' = Dropdown1.Selected.Result
)
I've attempted to use a listbox for the usage plan selection and mirrored the working code with two lines, but with no success. Have also attempted using && instead of , . Both columns are from "PowerAppsPricing".
Any help would be greatly appreciated!
Thanks
Andy