Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

individual row format possible

I have rows

                           Q4

Prev Bal               $40

Balance               $60
Loss/Gain %    150.00%

I used num((Balance * 100 / PrevBal), '##.00%')

Still I am not getting % format

I appreciate your efforts

1 Solution

Accepted Solutions
its_anandrjs
Champion III
Champion III

It is correct only remove * 100 because you all ready use % format as '##.00%'

=num((Balance  / [Prev Bal]), '##.00%')

Regards

Anand

View solution in original post

3 Replies
its_anandrjs
Champion III
Champion III

It is correct only remove * 100 because you all ready use % format as '##.00%'

=num((Balance  / [Prev Bal]), '##.00%')

Regards

Anand

Anonymous
Not applicable
Author

Hi Anand

Thanks for prompt reply

But in case of 0.00000004895% I want to see atleast 0.00% which does not happen here.

Still I can see 0

Thanks again


Anonymous
Not applicable
Author

Hi Anand

After your suggestion, I selected 'Expression Default' in Number tab and working perfectly fine.

I appreciate your answer and thanks