Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi.
I perform a query showing the client code from 2 different tables and throws me the following result:
I need that the second value to be as the first. How I can solve it?
Regards.
HI.
Thanks for replying. I solved it by changing the settings of a ThousandSep and DecimalSep and it worked..
SET ThousandSep=','; SET DecimalSep='.';
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.
num(evaluate(ClaveCrm))
Use num#() transformation while load your data
Example:
LOAD
num#(trim(ClaveCrm)) as ClaveCrm;
SQL SELECT
ClaveCrm
from your table
text(ClaveCrm) to left align
or
num(ClaveCrm)
HI.
Thanks for replying. I solved it by changing the settings of a ThousandSep and DecimalSep and it worked..
SET ThousandSep=','; SET DecimalSep='.';