Unsure if I understood your problem correctly. But I am pretty sure that your solution will include the concat transformation. https://docs.celonis.com/en/concat.html
it might be CONCAT( to_date('date_value' , 'MM/DD/YYYY'),'...') what might make it tricky is that ' character is already reservered for indicating string values in PQL. Maybe there is an escape character to make it happen.
Unsure if I understood your problem correctly. But I am pretty sure that your solution will include the concat transformation. https://docs.celonis.com/en/concat.html
it might be CONCAT( to_date('date_value' , 'MM/DD/YYYY'),'...') what might make it tricky is that ' character is already reservered for indicating string values in PQL. Maybe there is an escape character to make it happen.
To clarify, what is the escape character that enables concatenating a single quotation in a string, e.g., CONCAT ''' does not work.
I ended up figuring it out. The escape key is \\', e.g., '\\''
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.