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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

how to set my values in billion

1000000000->1.0 bn

6 Replies
stephencredmond
Partner - Specialist II
Partner - Specialist II

Hi,

In the number properties of the expression in the chart, add the text "bn" under the "Billion Symbol" setting.

Regards,


Stephen

Anonymous
Not applicable
Author

how to set 1.0 for 100000000

jolivares
Specialist
Specialist

If you use in a chart, look for tab "number" and put the symbol for bn.  Or divide the quantity by a billion

Anonymous
Not applicable
Author

i already divide by billion but the result is wrong

stephencredmond
Partner - Specialist II
Partner - Specialist II

Hi,

It really depends on where you are showing it.

I might try one of these:

Num(Sum(Sales)/1000000000, '#,##0.0')

->  2.645 bn will show as 2.6

Num(Round(Sum(Sales)/1000000000, 1), '#,##0.0')

-> 2.645 bn will show as 3.0

Num(Floor(Sum(Sales)/1000000000, 1), '#,##0.0')

-> 2.645 bn will show as 2.0

Like I said, it depends where you need to display it.

Regards,


Stephen

jolivares
Specialist
Specialist

=Num(2584580000/1000000000,'#,###.0000bn')