Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Karim_Khan
Creator III
Creator III

How to show the sub values along with Total value

Hi Team,

     I am trying to get the % of Bookings on the selection of values.when I select the [Sales Level 1] and[ Sales Level 2]

then it should show the  [Sales Level 2] Data values.

Suppose [Sales Level 1]  we select AMERICAS then it show the all dependent value of [Sales Level 2] like

CANADA,LATAM,US COMMERCIAL,US OTHER etc.

I am able to achieve the first two Columns value i.e Count and Bookings but while am trying to get the % of booking it showing the wrong calculation.

PFA

Regards,

KK

MRKachhiaIMPjagangwassenaarashfaq_haseebKush141087

KK
1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

% Bookings

=

num(sum({$<[Fiscal Year] = {$(=only([Fiscal Year]))},[Month in Fiscal Year] = {'<=$(=only([Month in Fiscal Year]))'},CATEGORY={'IOT'},[Sales Level 2]=>} [Net Bookings]),'##.00')

/

num(sum(TOTAL {$<[Fiscal Year] = {$(=only([Fiscal Year]))},[Month in Fiscal Year] = {'<=$(=only([Month in Fiscal Year]))'},CATEGORY={'IOT'},[Sales Level 2]=>} [Net Bookings]),'##.00')

Last Column

=

num(sum({$<[Fiscal Year] = {$(=only([Fiscal Year]))},[Month in Fiscal Year] = {'<=$(=only([Month in Fiscal Year]))'},CATEGORY={'IOT'},[Sales Level 2]=>} [Net Bookings]),'##.00')

/

count({$<[Fiscal Year] = {$(=only([Fiscal Year]))},[Month in Fiscal Year] = {'<=$(=only([Month in Fiscal Year]))'},CATEGORY={'IOT'},[Sales Level 2]=>}DISTINCT([End Customer Global Ultimate Name]))

View solution in original post

6 Replies
MK_QSL
MVP
MVP

Use

SUM(YourExpression) / SUM(TOTAL YourExpression)

Karim_Khan
Creator III
Creator III
Author

Its not working sir

=sum({$<[Fiscal Year] = {$(=only([Fiscal Year]))},[Month in Fiscal Year] = {'<=$(=only([Month in Fiscal Year]))'},CATEGORY={'IOT'},[Sales Level 1]=, [Sales Level 2]={$(vSel2)}>} [Net Bookings])/sum(TOTAL({$<[Fiscal Year] = {$(=only([Fiscal Year]))},[Month in Fiscal Year] = {'<=$(=only([Month in Fiscal Year]))'},CATEGORY={'IOT'},[Sales Level 1]=, [Sales Level 2]={$(vSel2)}>} [Net Bookings]))

KK
MK_QSL
MVP
MVP

Can you provide expected result in excel file?

Karim_Khan
Creator III
Creator III
Author

Expected_result.png

KK
MK_QSL
MVP
MVP

% Bookings

=

num(sum({$<[Fiscal Year] = {$(=only([Fiscal Year]))},[Month in Fiscal Year] = {'<=$(=only([Month in Fiscal Year]))'},CATEGORY={'IOT'},[Sales Level 2]=>} [Net Bookings]),'##.00')

/

num(sum(TOTAL {$<[Fiscal Year] = {$(=only([Fiscal Year]))},[Month in Fiscal Year] = {'<=$(=only([Month in Fiscal Year]))'},CATEGORY={'IOT'},[Sales Level 2]=>} [Net Bookings]),'##.00')

Last Column

=

num(sum({$<[Fiscal Year] = {$(=only([Fiscal Year]))},[Month in Fiscal Year] = {'<=$(=only([Month in Fiscal Year]))'},CATEGORY={'IOT'},[Sales Level 2]=>} [Net Bookings]),'##.00')

/

count({$<[Fiscal Year] = {$(=only([Fiscal Year]))},[Month in Fiscal Year] = {'<=$(=only([Month in Fiscal Year]))'},CATEGORY={'IOT'},[Sales Level 2]=>}DISTINCT([End Customer Global Ultimate Name]))

Karim_Khan
Creator III
Creator III
Author

Thanks sir

KK