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

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / How to determine if an...
Power Apps
Unanswered

How to determine if an Image Control is empty

(0) ShareShare
ReportReport
Posted on by

Hi, this is my setup at the moment :

There is a Camera Control which when it's clicked sends a picture into a variable,

then an Image Control shows the image contained inside this variable

and there is a button that sends the image into a SharePoint Document Library with a Flow.

 

I would like to set the button.DisplayMode property to something like this :

If(IsEmpty(imageCapturedImage); Disabled; Edit)

But it doesn't work, my goal is to disable the button if no pictures have been selected yet.

 

Thanks in advance for any suggestion, ProNewbie

Categories:
I have the same question (0)
  • Verified answer
    Pstork1 Profile Picture
    68,697 Most Valuable Professional on at

    Use IsBlank rather than IsEmpty, which is for tables or collections.

    If(IsBlank(Image1.Image),DisplayMode.Disabled, DisplayMode.Edit)
  • v-xida-msft Profile Picture
    on at

    Hi @Anonymous ,

    How do you save the Captured picture into a variable within your app? Could you please share a bit more about the formula?

     

    Actually, it is not necessary to detect if the Image control is empty. As an alternative solution, you could consider detect if the variable which stores your captured image is blank.

    I have made a test on my side, please take a try with the following workaround:

    Set the OnSelect property of the Camera control to following:

    Set(CapturedPic, Camera1.Photo)

    Set the Image property of the Image control to following:

    CapturedPic

    Set the DisplayMode property of the Button control to following:

    If(
     IsBlank(CapturedPic),
     DisplayMode.Disabled,
     DisplayMode.Edit
    )

    Set the OnSelect property of the Button control to following:

    'YourFlowName'.Run(...); /* <-- Fire a flow, pass the captured picture to your flow */
    Set(CapturedPic, Blank()) /* <-- Reset the CapturedPic variable after your fire your flow */

    Please consider take a try with above solution, then check if the issue is solved.

     

    Best regards,

  • Community Power Platform Member Profile Picture
    on at

    Thanks to both for the answers, it worked using IsBlank() instead of IsEmpty().

     

    ProNewbie

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

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 796 Most Valuable Professional

#2
Michael E. Gernaey Profile Picture

Michael E. Gernaey 327 Super User 2025 Season 2

#3
Power Platform 1919 Profile Picture

Power Platform 1919 268

Last 30 days Overall leaderboard