Hi All, Putting some logic for Date Format function in Adobe Campaign
Standard. ToDate(LPad(ToString(Month(GetDate())),2 ,'0'
)+'/'+LPad(ToString(Day(GetDate())),2 ,'0' )+'/'+
ToString(Year(GetDate()))) ----MM/DD/YYYY (07/29/2020) Regards,Anil
🙂 I think there is an easier solution 12345/1000 on next lower cent:
Math.floor(100*(12345/1000))/100 =>> 12.3412345/1000 on next higher
cent: Math.ceil(100*(12345/1000))/100 =>> 12.35