Hi,
I am facing an issue with getting a timestamp from Power Automate to show up on my PowerApps Label
I have a label and a button on Power Apps.
On click of the button, it calls a Power Automate Flow. I have added a Respond to PowerApps action at the end and have set the Output type to Date whose value is set as utcnow().
When I test run the flow it does the task and generates the date successfully as i can see in the output however it does not seem to be passing it back to the PowerApps.
I am not passing any parameter to power Automate while I am calling it to run however only want the data back from it after it finishes running.
OnSelect property of the button is set as follows - Set(LastupdatedTime, Myflow.Run())- As you can see there is no parameter being passed to Power Automate
The text property of the label is set as LastupdatedTime
The data type of LastupdatedTime was showing as Boolean and so does the text property of the label so I modified it to as follows to convert it to Text
Set(LastupdatedTime, Text(Myflow.Run()))
After i run the flow from Power Apps it seems to run successfully however the text label shows as False and not the timestamp coming from Power Automate.
I am not even sure if any value is being passed back to Power Apps at all, though the flow is running successfully, either alone or by click of the button.
Any help or guidance would be appreciated.