Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

DOB from id no

Hi All

I am trying to extract the DOB from a 13 digit identification number in qlikview.

Please HELP.

Regards

Esmeralda

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Use below line in your script instead of DOB


DATE(Date#(Left(DOB,10), 'YYYY/MM/DD')) as DOB

View solution in original post

6 Replies
antoniotiman
Master III
Master III

If Field = '1234dddddd567'

use

mid(Field,5,6)

Regards

alexandros17
Partner - Champion III
Partner - Champion III

What is a DOB?

Not applicable
Author

Date of Birth

alexandros17
Partner - Champion III
Partner - Champion III

Give me some examples of DOB

its_anandrjs

what is your 13 digit no and which location DOB if it is in string then use

Right, Mid, Left for extraction

MK_QSL
MVP
MVP

Use below line in your script instead of DOB


DATE(Date#(Left(DOB,10), 'YYYY/MM/DD')) as DOB