Hi there - I have been searching for a solution to my problem. I feel like it should be very simple, but I am stumped!
I am trying to evaluate a timestamp... I want to send a different email based on the time of a form submission. If a form submission is submitted between 12:00AM - 6:00AM i want to send it to a different email address. All other times go to a different email.
This is what i have so far..
Convert the submission time to EST..

Then evaluate the time..

the functions are this:
Converted Time is greater than or equal to
formatDateTime(body('Convert_time_zone'),'yyyy-MM-ddT00:00:00')
Converted Time is less than or equal to
formatDateTime(body('Convert_time_zone'),'yyyy-MM-ddT06:00:00')
help!