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: 
Anonymous
Not applicable

how to split excelsheet cell values in qlikview

Hai experts.

how to split excel sheet cell values in qlikview. For example my data is below model, i will get data as output & count the values in excel sheet.

Header 1Header 2Header 3
            sap          output      count
1,2,313
421
531
6,742
5
1 Reply
marcus_sommer

You could use something like this:

load sap, subfield(sap, ',') as output, rangesum(substringcount(sap, ','), 1) as count

from excel;

- Marcus