Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
mvtriff
Contributor
Contributor

19 Digits number Qlik Sense

Hi Everyone,

Can someone help me display accurately a 19 digits number into a Qlik Sense table?

For some reason, in the table, the 19 digits are displayed with 000 at the end.

Thank you.

Kind regards,

t

mvtriff_0-1638015206558.png

mvtriff_1-1638015318861.png

 

 

1 Solution

Accepted Solutions
PrashantSangle

Looks like data is not getting properly while fetching from database only.. 

which database do you have Oracle?

Try using cast () in sql script like

 

LOAD id,
evaluate(iccid) as iccid_complete,
date,
cost,
data;

[stream]:

SQL  SELECT id,

cast(iccid as varchar) as iccid,
`date`,
cost,
data
FROM ebdb.stream;

 

Regards,

Prashant Sangle

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂

View solution in original post

5 Replies
acardella
Partner - Creator
Partner - Creator

Can you provide used script?

PrashantSangle

Try with evaluate()

 

Evaluate(fieldname)

https://community.qlik.com/t5/Qlik-Design-Blog/Evaluate-Function/ba-p/1467277

Regards,

Prashant Sangle

 

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
PrashantSangle

Looks like data is not getting properly while fetching from database only.. 

which database do you have Oracle?

Try using cast () in sql script like

 

LOAD id,
evaluate(iccid) as iccid_complete,
date,
cost,
data;

[stream]:

SQL  SELECT id,

cast(iccid as varchar) as iccid,
`date`,
cost,
data
FROM ebdb.stream;

 

Regards,

Prashant Sangle

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
PrashantSangle

Also I am moving your query to qlik sense group rather than ideation group. Also do not use num() in front end just used that field in front end

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
The_Squirrel
Partner - Contributor II
Partner - Contributor II