Hi @lua12
If you achieve this by using the Visible property of the image control and nesting If statements to check both conditions (state and channel).
Visible Property:
If(
DropdownState.Selected.Value = "AR" && DropdownChannel.Selected.Value = "BAR",
true,
false
)
To showcase different images based on the selection of two filters (state and channel) in PowerApps, you can use the If function in the Image control's Image property.
If(
StateDropdown.Selected.Value = "AR" && ChannelDropdown.Selected.Value = "BAR",
'Image1',
'OtherImage'
)
Thanks!
If my response has been helpful in resolving your issue, I kindly request that you consider clicking "Accept as solution" and "giving it a thumbs up" as a token of appreciation.