web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Is it possible to disp...
Power Apps
Unanswered

Is it possible to display different images on a confirmation screen?

(1) ShareShare
ReportReport
Posted on by

Happy Tuesday!

I'm currently using the Book A Room  template on Power Apps and I was wondering if I could display different floor images on the same page. Or would I have to create a different screen for each floor level to display each floor plan image?

Categories:
I have the same question (0)
  • Ami K Profile Picture
    15,687 Super User 2024 Season 1 on at

    @hotdogman - you can dynamically display different images on the same image control based on the condition that you specify so long as the image exists in the media pane. As a basic example apply the below to the Image property of the Image:

     

    If(
     true,//your condition
     'confirm-bg-copy-2@3x',
     'another image'
    )
    

     

    Another version using Switch:

     

    Switch(
     YourSwitchValue,
     "Result1",
     'confirm-bg-copy-2@3x',
     "Result2",
     '16_berylsea_light',
     "Result3",
     '157186112'
    )

     

  • hotdogman Profile Picture
    on at

    So let's say I booked a room on the first floor (RS_KS11100) how can I code the condition to show them the image of the first floor on the confirmation screen?

     

  • Ami K Profile Picture
    15,687 Super User 2024 Season 1 on at

    @hotdogman - I am not aware of the inner workings of that app but presumably it will record the selected room name (from a Dropdown or Gallery control or in a Variable for example).

     

    You can use the Switch example to display a specific image based on the selected room name. Suppose for example the room name is associated to a Gallery selection, you would use:

     

    Switch(
     Gallery1.Selected.RoomNumebr,
     "RS_KS11100",
     'confirm-bg-copy-2@3x',
     "RS_KSXXXXX",
     '16_berylsea_light',
     "RS_KSZZZZZ",
     '157186112'
    )

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Apps

#1
wolenberg_ Profile Picture

wolenberg_ 119 Super User 2026 Season 1

#2
WarrenBelz Profile Picture

WarrenBelz 107 Most Valuable Professional

#3
Haque Profile Picture

Haque 103

Last 30 days Overall leaderboard