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: 
krishna20
Specialist II
Specialist II

Percentage in Pivot Table

Hi Friends,

How can we show percentage value in pivot table.

I got result for an expression like

Dimension             Expression               %for Expression

A                           121,911,228                  ?

B                           225,221,122                  ?

C                           432,100,101                  ?

D                                132                          ?

E                                   10                         ?

I Have used % in number format,But it shows some exceed value. Please anyone suggest me.

Regards

Krishna

16 Replies
krishna20
Specialist II
Specialist II
Author

Hi Harsha,

Thank you for your reply. Please find the attached snapshot which i got after applying as u suggested.

Not applicable

Yes,

If your requirement is fulfilled then please close the thread ...

krishna20
Specialist II
Specialist II
Author

It's not exactly i want Harsha. We can't show percentages in Lakhs. We need to show percentage for 100.

Not applicable

Try like below & see,


=num(

((sum(TT_QS_PREM_LC_1)+sum(TT_1S_PREM_LC_1)+sum(TT_2S_PREM_LC_1))*TREATY_SEC_SHARE)

/

((sum(total TT_QS_PREM_LC_1)+

sum(total  TT_1S_PREM_LC_1)+

sum(totalTT_2S_PREM_LC_1))

*

sum(total TREATY_SEC_SHARE))

,'#,##0%')

krishna20
Specialist II
Specialist II
Author

Hi Harsha,

Thank you for the support. A little modification in expression brought my answer. 

=num(

((sum(TT_QS_PREM_LC_1)+sum(TT_1S_PREM_LC_1)+sum(TT_2S_PREM_LC_1))*TREATY_SEC_SHARE)

/

((sum(total TT_QS_PREM_LC_1)+

sum(total  TT_1S_PREM_LC_1)+

sum(totalTT_2S_PREM_LC_1))

*

( TREATY_SEC_SHARE))

,'#,##0%')

Not applicable

it's pleasure please close thread now..

Not applicable

hii

Try this expressions

=num(sum(sales) /total sales),'#,##0%')


or


Sum([Expression ])/Sum(TOTAL [Expression ])