Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Multiple format for expression in pivot table

I have a pivot table with one expression, where some numbers are whole number and some are needed to be in percentage format. Is there anyway we can do this? In excel it is easy as we choose only cells that needed to be in percentage can be done so by right clicking and format cell but I don't know how to do this in QlikView. When I go to properties and Number to change the format, it changes each and every format to percentage. Any help will be really appreciated.

Thanks.

2 Replies
vgutkovsky
Master II
Master II

In the Number tab, leave it at "Expression Default." In the expression itself, you can use the num() function to format.

The format for integer would be num(_____,'#,##0')

The format for decimal would be num(_____,'#,##0.00%')

Hope this helps!

Vlad

sasikanth
Master
Master

Hi

Try some thing like below

if(Exp1>value1,num(exp,,'#,##0.00%'),num(exp,'#,##0'))

i am not sure about it,but

May be help full