ACT NOW: The Alteryx team will be retiring support for Community account recovery and Community email-change requests Early 2026. 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