Hi
I went into a trouble for converting numbers (doulbe format) to date format in Alteryx.
e.g. numbers in excel 20230722, how to convert to date format as 22/07/2023 in Alteryx, thanks!
@DanielShen
convert double date to stringdate1 = ToString([DateExcel]and then use the tool to convert to datetime with the custom option like print
Hi @DanielShen ,
Another way is to use Formula tool as below.
Input & Output
Expression in Formula tool
DateTimeFormat(DateTimeParse(ToString([Input]),"%y%m%d"),"%d/%m/%Y")
Hi all,
really appreciate your timley help.