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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to skip last digits

Hi,

    I am reading data from the XL file and stored in the Mysql table. for ex: I want to store the ID column values  W95343545125 = W9534354512 (How to remove last digits )

Labels (3)
1 Solution

Accepted Solutions
manodwhb
Champion II
Champion II

@Dhandu502 , try the below one.

 

StringHandling.LEFT(row1.name ,StringHandling.LEN(row1.name)-1)

View solution in original post

3 Replies
TRF
Champion II
Champion II

StringHandling.LEFT(row1.id, 12)
Anonymous
Not applicable
Author

Hi TRF,
Thanks for your reply, but the ID column value length is not fixed, This is a dynamic value. then how to solve this problem,
help me.
manodwhb
Champion II
Champion II

@Dhandu502 , try the below one.

 

StringHandling.LEFT(row1.name ,StringHandling.LEN(row1.name)-1)