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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Ravi_Nagmal
Contributor III
Contributor III

How to count value from Comma Separated text

Hi Folks,

Urgent help required, I am trying to achieve Required Table which the source data I have.

Please help, Thanks in Advance.

Ravi_Nagmal_0-1706186712090.png

 

2 Replies
steeefan
Luminary
Luminary

Break up the field Team name with SubField(),  then on Record No perform a COUNT() while GROUPing over Team name.

Pierrick
Partner - Contributor III
Partner - Contributor III

Hello,

if you can modify your data in your datamodel, you can use the subfield function : subfield documentation 

In your load script, is like : 

Load
    [Record No],
    subfield([Team name],',') as Team
Resident Data;

You'll get a line for each key "Record-Team", and in the visualization, you can easily count the number of records per team.