Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to skip few digits from the field values?

Hi Team,

How to skip few digits from the field values?

I just want to skip this first two zeros from the Sales Order field.

11-25-2014 9-08-27 PM.png

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

mid ( [Sales Order] , 3 )

View solution in original post

5 Replies
rubenmarin

Hi, in script you can use:

Num(Num#([Sales Order])) as [Sales Order]

Anonymous
Not applicable
Author

mid ( [Sales Order] , 3 )

Not applicable
Author

Hi,

Try

 

=Mid('0010146623',3)    => gives 10146623

The 2nd parameter of Mid() function specifies the Start Count !

Hope it helps !


Anonymous
Not applicable
Author

Hi Murali,

Yes You can use Mid function:

In UI:

= Mid ( [Sales Order] , 3 )


In Script

Mid([Sales Order ID],3) as [SalesOrderID]


Regards

Neetha

MarcoWedel

Hi,

another solution could be:

QlikCommunity_Thread_143537_Pic1.JPG.jpg

works for text input

and

QlikCommunity_Thread_143537_Pic2.JPG.jpg

numerical input as well

hope this helps

regards

Marco