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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
noviceneil
Partner - Contributor III
Partner - Contributor III

conditional formatting

Hello everyone,

                                I have a table where both value are percentages are there in the QVD.

I need to show it exactly the same way in the visualization. 

ID            Value                    

A                1504.87

B                 20304

C                 147%

I know that when the ID =C then I need to show it as percentages and otherwise as number. I didn't get any option for row level formatting based on conditions. Is there any workaround? Could you please help.

 

 

Labels (1)
1 Reply
Sammy_AK
Creator II
Creator II

your need to use Num function. in your above example, what you can do in your measure is:

Num (sum(value),if(ID='C', '#,##0.00%','#,##0.00')) and set the number formatting to auto or Measure expression.