Hello Peers,
Can anyone help me convert this Oracle SQL statement into a formula tool expression? Appreciate your time.
SELECT to_char(replace(replace(to_char(SYSDATE ,'MMDDYY HH24:MI:SS'),':',''),' ','')) vdate FROM DUAL;
My formula though is this:
ReplaceChar(ReplaceChar(ReplaceChar(ToString(DateTimeNow(), 0), '-', ''),' ', ''),':','')
Thanks.