Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Column Problem

If there is a column with location. all locations starts with "  SL. " now i want to remove this SL. but the thing is some of them dont have this so the right and mid comand is actualy cutting the first 3 letter so anything we can do for only selcting SL. and deleting the SL. only from SL.Mumbai and etc.

Location name

SL.Mumbai

SL.Gurgaon

Latur                 Here Lat is cutted if right or mid is used

SL.Chennai

1 Solution

Accepted Solutions
qlikview2015
Creator II
Creator II

Hi !

Try this....

if(left([Location Name],2)='SL',mid([Location Name],4,15),[Location Name])

Best regards

Mike Preuss

View solution in original post

6 Replies
stigchel
Partner - Master
Partner - Master

You can use an if statement, something like

If(Left([Location name],3)='SL.',Mid([Location name],4,len([Location name])),[Location name])

maxgro
MVP
MVP

if(left(location,2)='SL', right(location, len(location)-3), location) as location

robert99
Specialist III
Specialist III

Try using Index

if (Index( FIELDNAME,'SL.') = 1 ,ETC

or replace might work

replace(fieldname , 'SL.','')

you might need trim (replace(fieldname , 'SL.',' ') )

or maybe

replace(fieldname , 'SL.',null())

qlikview2015
Creator II
Creator II

Hi !

Try this....

if(left([Location Name],2)='SL',mid([Location Name],4,15),[Location Name])

Best regards

Mike Preuss

Not applicable
Author

Thank you bro.. !

qlikview2015
Creator II
Creator II

Hi !

If there are Location Names that are longer than 15 characters, the number must be bigger...

Best regards

Mike Preuss