Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
i Have done all setting to get the figures like 11.16,8.72,5.10 in Chart.
What should change in chart to get the Required Decimals ?
Just to right of the "Fixed to" you have selected enter the number of decimals you want.
Hi Satish,
I usually create an expression like:
Dual(
if([your formula] > 1000000,
Num([your formula]/1000000,'#,##0.0') & ' Million',
if([your formula] > 1000,
Num([your formula]/1000,'#,##0.0') & ' Thousand',
Num([your formula]/100,'#,##0.0') & ' Hundred'
)))
,
[your formula]
)
The Dual function means that the formula within the if statement is displayed but your original formula is what will be mapped in the chart.
I want figures in chart like 11.16,8.72,5.10 etc
what should i change there?
Hi Satish
Try this: Scaling Numbers and DSE Tips | Qlikview Cookbook, by rwunderlich
Scaling Numbers and DSE Tips | Qlikview Cookbook
Ohhh... marcio.campestrini has already posted this..!
Satish
Have you solved your issue? If you did, choose the right question to help us to keep community clean.