We were trying to do calculations on orders created each day but the date/time field constrains us. Parsing out the month/day/year into a new field should have worked, however we are noticing some unusual discrepancies. It appears anything after 7pm EST is rolling to the next day unprompted.
SOOrder.CreateDateTime = 2/12/2025 7:32 PM
=cdate(Concat(CStr(Month([SOOrder.CreatedDateTime])),'/',CStr(Day([SOOrder.CreatedDateTime])),'/',CStr(Year([SOOrder.CreatedDateTime])))) = 2/13/2025
=Day([SOOrder.CreatedDateTime]) = 13
SOOrder.CreateDate = 2/12/2025 5:32 PM
=cdate(Concat(CStr(Month([SOOrder.CreatedDateTime])),'/',CStr(Day([SOOrder.CreatedDateTime])),'/',CStr(Year([SOOrder.CreatedDateTime])))) = 2/12/2025
=Day([SOOrder.CreatedDateTime]) = 12