
Hi, I'm trying to showcase different images based on the selection of two filters: state and channel, for example when the selected state is "AR" and channel is "BAR"I want Image1 to be shown. I tried messing with Visible and IF functions but couldn't get it to work
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.