To get Date part from datetime attribute

0
Hi Experts, Hope you doing good!   I want an idea in one of the logic I want to implement. I have 1 date and time attribute and i want to get only date part out of that to map that date part with other time attribute. How can i do that?   Thanks for all suggestions and ideas 
asked
1 answers
0

DateOnly: formatDateTime([%CurrentDateTime%], 'yyyy-MM-dd')

TimeOnly: formatDateTime($YouOtherTime, 'yyyy-MM-dd')

NewDateTime: parseDateTime($DateOnly + $TimeOnly, 'yyyy-MM-ddHH:mm:ss.SSS')

 

image.png

answered