
Announcements
Hi,
I am creating an app which will be used to take pictures on a tablet.
On the screen the user is using. They save photos they take to the SharePoint List which has Image columns such as Image Column 1, Image Column 2.
If the 'Image Column 1'has an image in it (so the user has taken and uploaded an image), I would like a textbox/label to become visible on the screen that says something like 'An image has already been uploaded', how do I do this?
Any help is much appreciated.
Thanks,
Hi @Anonymous ,
Assuming you are using Image controls to display the images, you can do this by adding a formula to the Visible property of the textbox/label that checks if the content of the image control is blank or not:
!IsBlank(Image1.Image)
In the above Image1 is the name of the image control which you will have to replace with the name of your actual image control.