Hi,
I am trying to create a formula that will add 5 hours to the Request Start Date (which I am using the created date for) if Priority = critical.
=IF([Priority]@row = "Critical", [Request Start Date]@row + (5 / 24), IF([Priority]@row = "High", [Request Start Date]@row + 1, IF([Priority]@row = "Low", [Request Start Date]@row + 2, "")))
So in the example:
Request Start Date = 3/14/24 3:15 pm
Priority = Critical
This formula is returning 3/15/24 rather than 3/14/24 8:15pm
I need the time stamp to be returned
Thanks,
Melissa