Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi!
Does anybody knows how ich can cut the right side of a string in qlikview.
For Example i habe the niumver 12683001. I want cut only the last 3 signs so that the new strings look like 12683
Thank you for your help.
Best regards
Roland
if the number of digits always the same you can say
left (niumver ,5) as niumver5
otherwise
left(niumver ,len(niumver)-3) as niumver_new
regards
if the number of digits always the same you can say
left (niumver ,5) as niumver5
otherwise
left(niumver ,len(niumver)-3) as niumver_new
regards
Thank you very much!