
Partner - Contributor III
2019-03-08
04:48 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Selection of a single value from a string separated by some delimiter with other values
Hi All,
I am working on one requirement where I am getting multiple values in a single cell separated by delimiter. For example in a single cell we are getting data as following:
Here we have multiple Project ID separated by semicolon in a single cell. Our requirement is:
when we select on a Project Id only that value should be selected not the whole string. For example we have 5591;5569;5566;5586;5582;5567 and we click on 5591 only it should be selected not the whole string.
Any help is very much appreciated.
Thanks,
Anshul
770 Views
1 Solution
Accepted Solutions

MVP
2019-03-08
05:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I suggest that you split up the concatenated ProjectID fields into multiple single value fields in your script. To accomplish this you could use the subfield() function.
SubField([Project ID], ';') as [Project ID]
SubField([Project ID], ';') as [Project ID]
Vegar
Qlik Community MVP
Qlik Community MVP
762 Views
2 Replies

MVP
2019-03-08
05:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I suggest that you split up the concatenated ProjectID fields into multiple single value fields in your script. To accomplish this you could use the subfield() function.
SubField([Project ID], ';') as [Project ID]
SubField([Project ID], ';') as [Project ID]
Vegar
Qlik Community MVP
Qlik Community MVP
763 Views

Partner - Contributor III
2019-03-11
02:34 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank You Vegar!!
But I was hoping to achieve it with out the splitting of the field.
743 Views
