Hi.
I have been looking around but not winning.
I am new in Alteryx.
I am trying to Add (SUM) multiple columns (Time Field Type) creating new column with SUM of the columns.
Example of columns:
Please see the attached file
Hi @Oskido
My take on this. Managed with a single formula
Formula:
DateTimeAdd("1900-01-01",
DateTimeDiff([QueueTimeDuration],"00:00:00","seconds")+
DateTimeDiff([AuthenticationDuration],"00:00:00","seconds")+
DateTimeDiff([CustomerUpdateDetailsDuration],"00:00:00","seconds")
,"seconds")
Workflow:
Hope this helps : )