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: 
Not applicable

Chart Help ??

Hi

I have 'Sales' field with the following values :

Sales

9500

22850

30195

108000

But the actual values are:

95.00

228.50

301.95

1080.00

For example, '9500' Field value should be convert to 95.00 in Chart.

How can I do this in Chart ??

Can anyone help ???

Many thanks

P

1 Solution

Accepted Solutions
matt_crowther
Specialist
Specialist

Divide 'Sales' by 10 in the expression and set the Number format to be 'Fixed To' 2 decimal places.

Works for me.

Hope that helps,

Matt - Visual Analytics Ltd

View solution in original post

3 Replies
matt_crowther
Specialist
Specialist

Divide 'Sales' by 10 in the expression and set the Number format to be 'Fixed To' 2 decimal places.

Works for me.

Hope that helps,

Matt - Visual Analytics Ltd

Not applicable
Author

Hi

You can transform your field:

=LEFT(Sales, Len(Sales)-2) & '.' & Right(Sales, 2)

Not applicable
Author

Thanks Matt !!

Your Solution working fine for me...

I Divided the Sales by 100...not 10.

For example, If i divide 9500 by 10 ..the value i get 950...but i want 95. So i divide the value by 100.

Thanks a lot ...