Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Community,
I have a Date Field Contain data as "Monday,9Dec@2019".
Now i want Generate date as 09/12/2019 format. Please help me with this.
Thank you in advance
= Date(Date#(SubField('Monday,9Dec@2019', ',', 2), 'DMMM@YYYY'), 'DD/MM/YYYY')
Subfield discards the day value / Date# interprets the date / Date formats it.
Replace the literal date with the field name.
= Date(Date#(SubField('Monday,9Dec@2019', ',', 2), 'DMMM@YYYY'), 'DD/MM/YYYY')
Subfield discards the day value / Date# interprets the date / Date formats it.
Replace the literal date with the field name.