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: 
clovati
Partner - Creator
Partner - Creator

Format value

Hi all. In this Example I wish to display the yellow value with decimal.

Capture.PNG

I wrote this

If (MisuraOrdinamento = 1 ,Num(Valore, '#.##0'),

If (MisuraOrdinamento = 2 ,Num(Valore, '#.##0'),

If (MisuraOrdinamento = 3 ,Num(Valore, '#.##0,##'),

)))

but it didn't Work.

In their TOTAL I want the sum for 1 and 2 and the avarage for the 3.

THANKS in advance!

1 Reply
clovati
Partner - Creator
Partner - Creator
Author

I FOUND:

If (MisuraOrdinamento = 1 ,Num(Valore, '#.##0'),

If (MisuraOrdinamento = 2 ,Num(Valore, '#.##0'),

If (MisuraOrdinamento = 3 ,Num(Valore, '#.##0,00'),

)))

I have the problem of TOTALS 😞 thanks