Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
thkarner
Partner - Creator III
Partner - Creator III

=Num#('000000000000002389') not working

Hi,

interesting thing. I´ve SAP material numbers, e.g. 000000000000002389

Data is retrieved as text which I want to convert, but wasn´t sucessful.

Then I tried to use a KPI object and saw that this

=Num#('00000000002389')

is working, but the following not.

=Num#('000000000000002389')

Has anybody an explanation?

Regards,

Thomas

1 Solution

Accepted Solutions
sunny_talwar

QlikView is unable to read a number greater than 14 digit as a number

View solution in original post

3 Replies
sunny_talwar

QlikView is unable to read a number greater than 14 digit as a number

sunny_talwar

May be remove leading zeros before using Num#() function

QlikView Addict: Removing Leading Zeros

swuehl
MVP
MVP

If your significant digits are below 15, hence there are just leading zeros padded, you can try like

LOAD *, Num(TestNum) as TestNumNoLeadingZeros;

LOAD *, Evaluate(TEST) as TestNum INLINE [

TEST

000000000000000123

000000000000233455

];