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: 
nihhalmca
Specialist II
Specialist II

Gauge Chart

Hi All,

I want to display value (10,500.50 in thousands) in Gauge chart.

However Gauge chart shows value as '10.500.50'

My Requirement : display ',' instead of '.' after '10' (as thousand separator).

Thanks,

Regards,

NiHhal.

14 Replies
sundarakumar
Specialist II
Specialist II

Go no number tab and give comma in thousand seperator

Capture.PNG

-Sundar

sunilkumarqv
Specialist II
Specialist II

Hi,

On chart properties  number  tab make Format Pattern format like this #,###0  Hope you get the solution

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this

=Num(Num(Replace(Left('10.500.50', Len('10.500.50') -3), '.', ',')) + Num(Right('10.500.50', 2)/100), '#,###.#0')

Regards,

Jagan.

jagan
Partner - Champion III
Partner - Champion III

Hi,

Or simply this

=Num(Num#(Replace('10.500.50','.', ''), '#,###')/100, '#,###.#0')

Regards,

jagan.

Not applicable

If you are using LED you won't get comma

nihhalmca
Specialist II
Specialist II
Author

Thanks for reply Sundarakumar.

I tried this way but not working

NiHhal.

nihhalmca
Specialist II
Specialist II
Author

Thanks for writing

But not working

NiHhal.

nihhalmca
Specialist II
Specialist II
Author

Hi Jagan, thanks for writing

Please let me know where can i paste this script ex: number tab or expression tab.

NiHhal.

sundarakumar
Specialist II
Specialist II

Hi Nihhal,

Capture.PNG

if the Right part is ur problem, then it cannot be shown as comma.. better go for Left side representation..

-Sundar