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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
spividori
Specialist
Specialist

Number and string

Hi.

I perform a query showing the client code from 2 different tables and throws me the following result:

Captura.PNG.png

I need that the second value to be as the first. How I can solve it?

Regards.

1 Solution

Accepted Solutions
spividori
Specialist
Specialist
Author

HI.

Thanks for replying. I solved it by changing the settings of a ThousandSep and DecimalSep and it worked..

SET ThousandSep=','; SET DecimalSep='.';

View solution in original post

5 Replies
Not applicable

If you are only looking to change the way it is displayed, go to Chart Properties > Presentation > Alignment and set both text and numbers to the right.

Anonymous
Not applicable

num(evaluate(ClaveCrm))

Clever_Anjos
Employee
Employee

Use num#() transformation while load your data

Example:

LOAD

     num#(trim(ClaveCrm)) as ClaveCrm;

SQL SELECT

     ClaveCrm

from your table

maxgro
MVP
MVP

text(ClaveCrm)  to left align

or

num(ClaveCrm)

spividori
Specialist
Specialist
Author

HI.

Thanks for replying. I solved it by changing the settings of a ThousandSep and DecimalSep and it worked..

SET ThousandSep=','; SET DecimalSep='.';