Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

how to separate numbers after delimiter

hi everyone

i want to separate numbers after second / in bellow example

1987/11/2

or

1987/11/12

i would appreciate if anyone can help

1 Solution

Accepted Solutions
pradosh_thakur
Master II
Master II

=SubField('1987/11/12,'/',-1)

or

=subfield(Your_field,'/',-1)


regards
Pradosh

Learning never stops.

View solution in original post

3 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

Try Subfield() function.

Load *,

Subfield(Fieldname,'/') as Newfield

From zyx;

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Anil_Babu_Samineni

What is the output u want to see?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
pradosh_thakur
Master II
Master II

=SubField('1987/11/12,'/',-1)

or

=subfield(Your_field,'/',-1)


regards
Pradosh

Learning never stops.