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

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Extract right hand values from a specified position

Hi ,

I have a text field and I would like to extract all its characters from the position twuelve to the end. The strings do not have allways the same size so I can not use a simple right(field,x) command.

How can I get this?

Thanks.

1 Solution

Accepted Solutions
rubenmarin

You can use Mid(field, 12)

View solution in original post

5 Replies
rubenmarin

You can use Mid(field, 12)

geert_gelade
Creator
Creator

Try mid(field,12,len(field)).

MK_QSL
MVP
MVP

Mid(YourFieldName,12) as YourRequiredFIeld

ychaitanya
Creator III
Creator III

HI Luis

Use Mid(FieldName, Start_Character,End_Character) to fetch any part of string.

Regards

Chaitanya

MK_QSL
MVP
MVP

Sorry but

mid(field,12,len(field)) is not the right solution... if you want to use Len(Field) you have to use as below

MID(field,12,Len(field)-12+1)


Correct me if I am wrong...