Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content
Announcements
WEBINAR April 23, 2025: Iceberg Ahead: The Future of Open Lakehouses - REGISTER TODAY
cancel
Showing results for 
Search instead for 
Did you mean: 
guruprem
Partner - Creator III
Partner - Creator III

Hiding specific column Totals in Qlik Sense table

Hi,

I created a simple table as shown below, I need totals for some columns , for some other columns I do not need totals, how can I achieve this.

IN following example I do no wanna show any totals in "Final Profit or Loss %" column, I tried selecting "None" in Totals Function of this column still Qlik is showing something. Please help.

Hiding Column in Qlik Sense.PNG

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Try using the Dimensionality() function.

Change your expression from something like =sum(X) to =If(Dimensionality()>0, sum(X))


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Try using the Dimensionality() function.

Change your expression from something like =sum(X) to =If(Dimensionality()>0, sum(X))


talk is cheap, supply exceeds demand
jayaseelan
Creator III
Creator III

Hi,

Try this

If(Dimensionality()>0, sum(Final Profit or Loss %),'')

Which gives empty in the place of total.

Thanks,