Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
R__M
Partner - Contributor
Partner - Contributor

Date With Special Character

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

 

 

 

 

Labels (1)
  • Other

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

= 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.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

1 Reply
jonathandienst
Partner - Champion III
Partner - Champion III

= 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.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein