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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
hopkinsc
Partner - Specialist III
Partner - Specialist III

new fields from existing field values

Hi all,

i have a field called Cell_No and it contains values like the following..

BTS name =Rokupa,Cell ID=9

I want to create a new field called [BTS Name] which will be 'Rokupa'

and another Field called [Cell ID] which will be 9.

The first new field will be everything after the first = to anything before the comma.

and the 2nd field will be anything after the last =

but i am unsure how to do this, can anyone help please?

1 Solution

Accepted Solutions
nagaiank
Specialist III
Specialist III

Try

Load SubField(SubField([Cell_No],'=',2),',',1) as [BTS Name]

        ,SubField([Cell_No],'=',3) as [Cell ID]

View solution in original post

1 Reply
nagaiank
Specialist III
Specialist III

Try

Load SubField(SubField([Cell_No],'=',2),',',1) as [BTS Name]

        ,SubField([Cell_No],'=',3) as [Cell ID]