Hi!
I have an Excel file that downloads to CDT with no spaces (e.g. 10:30am) and need to change it to EDT.
In Excel I use this formula: =SUBSTITUTE(SUBSTITUTE([Cell],"am"," am"),"pm"," pm")+1/24
In Alteryx, I've gotten as far as using the multi-field formula tool:
REPLACE(REPLACE[COLUMN],"am"," am"),"pm"," pm")
(Example output = 9:30 am) I still need to change it to EST, but I keep getting nulls when I've tried different formulas/tools.
The type is V_String, but it doesn't work if I change the type using the Select tool either.
E.g.
Report downloads as 10:30am CDT
Need it to show 11:30 am EDT
Thanks in advance!