Is it possible to pass a user input to a subsequent expression in Power Automate?
In the attached example, the user is prompted to enter a number, which is stored in the Trigger as "UserInputHrs."
In the next "Create Event" step the addhours() expression is called, and I want to pass the user input to the addhours() expression as its second value, which is an integer.
It would look something like: addHours(utcNow(),'UserInputHrs'). Not sure if this is even possible to do.
The "Update" button when pressed will only seem to accept the 'UserInputsHrs' variable if it is enclosed in single quotes. But it fails in actually passing any values to the addHours().