Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content
Announcements
Qlik Connect 2025! Where innovative solutions turn your data visions into reality: REGISTER TODAY
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

showing £ on an axis

Hi,

This may be a really sily question so apologies if it is.

Want the X Axis on a chart to show as £20,000, £40,000 etc rather than 20,000, 40,00 as it does currently.

What is the chart option or what do I need to do to get this to work?

Any help much appreciated.

Chris

1 Solution

Accepted Solutions
Not applicable
Author

Chart Properties > Number > Add your symbol under Symbol, Thousand Symbol, Million Symbol.

For example: £, £K, £M

View solution in original post

15 Replies
avinashelite

you can add a calculated dimension like this:

'$'&your_field_name

gautik92
Specialist III
Specialist III

='£'&Fieldname

sunilkumarqv
Specialist II
Specialist II

In you dimension

='£'&FieldName

if your not using any dimension in that case on Propertirs -Number settings use symbol =£ .

mohammadkhatimi
Partner - Specialist
Partner - Specialist

In dimension

='£'&FieldName

Hope this will helps you...!!

Regards,

Mohammad

Anonymous
Not applicable
Author

As far as I understand your problem, you are trying to display £ and not sure how do you do that.

You can either use Chr(int) function if you know the ASCII value of this character or can copy '£' symbol from a Microsoft Word Document and paste it in your chart as Avinasha and Gowtham explained (i.e. '£' & your_field).

Hope this helps.

Regards,

Laxmi

jonathandienst
Partner - Champion III
Partner - Champion III

I recommend formatting it rather than turning the dimension into a string, which might mean you need a sort expression to get them to sort properly.

Either use this in a calculated dimension: =Num(Field, '£#,##0.00')


Or, go to Properties | Number, select the field and apply the same formatting £#,##0.00 to the field as the default format.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
sasiparupudi1
Master III
Master III

Hi Jonathan,

I think his question is about showing pound symbol on the axes rather than the data points.. Is there any way to show the symbol on the axes points?

Sasi

jonathandienst
Partner - Champion III
Partner - Champion III

If its the X-axis (as in the original question), then my suggestion should work. It certainly does in my models.

If its the Y-axis, set the format in chart properties. Go to Properties | Number, select the expression, and enter the required format eg £#,##0.00

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
sasiparupudi1
Master III
Master III

Untitled.jpgLike the attached?