Date and time functions

0
Hi, How to combine the date and time of two different attributes to another attribute? eg: 22-03-2022 + 10:10 AM to 22-03-2022 10 :10 AM
asked
1 answers
0

Format the appropriate parts of each datetime, concatenate them, then parse it:
 

parseDateTime(
  formatDateTime($Date, 'dd-MM-yyyy') + ' ' + formatDateTime($Time, 'hh:mm:ss'), 
  'dd-MM-yyyy hh:mm:ss'
)

 

answered