I attached excel data with a column for the date an Order is received in a warehouse. I want Alteryx to determine if the order was received prior to 2pm. If it was received prior to 2pm then the New Order Received Date (column
would be the same date in column A. However, if the order was received after 2pm, then the new order received date would be the following business day or Order Received Date +1 (unless the order was received on a Friday after 2pm, in that case the new order received date would be the following Monday)
I'm running into issues with this formula and to get Alteryx to read just the time (HH:MM) part of the cell.
Any advice for how I can set this workflow up would be amazing.
Thank you!
P.S. Not sure if this helps, but I'm able to do this in excel by using this formula =IF(TIME(HOUR(A2),MINUTE(A2),SECOND(A2))<=TIME(14,0,0),A2,A2+1+IF(WEEKDAY(A2+1)=7,2,IF(WEEKDAY(A2+1)=1,1,0)))