Hello,
I need to use the camera function within PowerApps in order for employees to take pictures of their employee card (front picture and back).
I'm using two variables (FrontPic & Backpic) in order to save the pictures, my only problem is that I need to use one button that firstly takes the first picture -> which saves itself in the FrontPic variable, and after that, I want to store the second picture - in the Backpic variable.
I've tried using this formula, but it only saves the Frontpic variable.
If(IsBlank(FrontPic),UpdateContext({FrontPic:Camera1.Stream}),UpdateContext({BackPic:Camera1.Stream}));
Please, could somebody advise?
Hey,
do you clear this variables after you save the photos somewhere?
Hello,
Yes, I need these two variables for a Microsoft Flow, after the pictures will be submitted, I will reset both variables so the next employee can use it.
Hey,
maybe the problem is that in cannot be saved in a variable. When I am saving photos from camera I am saving it to a collection and then using Firct(collection).url to save it to the flow. I would suggest this and maybe have an extra variable which will change depending if on which picture to take. For example it can be set to true when you first enter to the camera screen and then on click it can change to false and it can reset after all.
Hope this helps.
Hi,
Can you try this?
If(IsBlank(First(FrontPic).Url),ClearCollect(FrontPic,Camera1.Photo),ClearCollect(BackPic,Camera1.Photo));
Then use
First(FrontPic).Url; First(BackPic).Url);
To send to the flow.
If this answers your question do mark it as verified.
Regards,
Pavan Kumar Garlapati
User | Count |
---|---|
256 | |
109 | |
90 | |
51 | |
44 |