In my flow, I have a date calculation to subtract 8hours from current time like below.
addHours(utcNow(),-8,'yyyy-MM-ddThh:mm:ss')
I want to take this parameter value(8) from a variable. I have set an integer variable with value 8. so, new expression is like
addHours(utcNow(),-variables('varHours'),'yyyy-MM-ddThh:mm:ss').
But this expression is throwing error invalid expression.
please help?