Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
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