Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Can some one help me , how can i remove hypen which i am getting in my value
For Example: i have value like 2017-11 but i want it in 201711
how can i remove that hypen in middle.
Best Regards,
Hk
replace() is your friend
or
subfield(f,'-',1) & subfield(f,'-',2)
or
left and right
Kind Regards,
Dion
replace() is your friend
or
subfield(f,'-',1) & subfield(f,'-',2)
or
left and right
Kind Regards,
Dion
You can do like this?
Replace(FieldName, '-', '') as FieldName
Date(Date#(FieldName, 'YYYY-MM'), 'YYYYMM') as FieldName
Hi All,
Thank You so Much 🙂
Hi,
you can also use this:
PurgeChar(Field,'-') as Field