I've trying to use the parse tool to change the date format in MM/DD/YYYY as that's the only way my system will receive the input. I've tried from date format and string but neither seem to like it so appears i'm going wrong somewhere. I'm a bit of an alteryx noob so any help is massively appreciated!
Many thanks
Solved! Go to Solution.
@joewils92 - DateTimeFormat([Journal Date],"%m/%d/%Y")
Refer to this guide to understand the logic: DateTime Functions (alteryx.com)
@joewils92 give this formula a try
DateTimeFormat(DateTimeParse([Journal Date],'%Y-%m-%d'),'%m/%d/%Y')
@joewils92I recommend using the datetimeformat function within a formula tool:
datetimeformat(ToDate([Journal Date]),"%m/%d/%Y")
See https://help.alteryx.com/current/en/designer/functions/datetime-functions.html## for other date time formatting help.
Thanks so much all!