In case you missed the announcement: The Alteryx One Fall Release is here! Learn more about the new features and capabilities
here
ACT NOW: The Alteryx team will be retiring support for Community account recovery and Community email-change requests after December 31, 2025. Make sure to check your account preferences in my.alteryx.com to make sure you have filled out your security questions.
Learn more here
if contains ([TimeDate],'AM') then if tonumber(left([TimeDate],2))= 12 then "00"+":"+Substring([TimeDate],2,2)+":00" else left([TimeDate],2)+":"+Substring([TimeDate],2,2)+":00" endif else if tonumber(left([TimeDate],2))= 12 then left([TimeDate],2)+":"+Substring([TimeDate],2,2)+":00" else tostring(12+ tonumber(left([TimeDate],2)))+":"+Substring([TimeDate],2,2)+":00" endif endif