Hi all,
I need add to text - current month and Year.
With Excel it's looks like that:
But in Alteryx it shows me error "Wrong number of parameters for the function "DateTimeToday".
Do somebody have any idea how to solve it?
Thanks!
Solved! Go to Solution.
Hey @dtsoy
DateTimeToday() does not have any parameters....so if you want a different format you'll need to use:
DateTimeFormat(DateTimeToday(), "%m-%Y")
Thanks a lot!! It works now.