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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Exponential data issue

Hi All,

Our data source is DB2 and we have created all the necessary qvd.

While validating the values, we realised that the a Primary Key which is 20 digit long is converted into exponential format while creating the QVD file because of which we are getting wrong values.

Is there any way by which we can get rid of this auto conversion of numeric data into exponential data while creating the qvd ?


eg:

Value in DB2: 10203040506070801020

Value in QVD; 102 e+17

3 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

HI,

Generally QlikView takes data as it is.

Kindly convert the field from number to text in DB and then try.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
tresesco
MVP
MVP

Try using text(), like:

Text(Value) as NumInText

then for any calculation on this field use like : =evaluate(NumInText)+10

jagan
Partner - Champion III
Partner - Champion III

Hi,

If you are not using this for calculation simply use

Data:

LOAD

*,

Text(Value) AS Value_Text

FROM DataSource;

Hope this help you.

Regards,

Jagan.