Calculated Field Rounding on Date
CONCAT(YEAR({DE:UKI - Campaign Start Date}), "/",CASE(MONTH({DE:UKI - Campaign Start Date}),"01","02","03","04","05","06","07","08","09","10","11","12"), "/", CASE(DAYOFMONTH({DE:UKI - Campaign Start Date}),"01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31"))The above is some code I have in place to change the format of a custom date and time field named 'UKI - Campaign Start Date'. The Calculated Date Field is working well but seems to round in the wrong direction when it comes to dates with midnight. A date entered of '28 Aug 2025 00:00' results in a generated date of '2025/08/27'. The dates seem to round down when a time of 00:00 is added. Is there a reason the date would round in either direction based on the code I have added?