Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Remove field not ending with a number

Greetings,

I've a table like this

IDName
18651qzPeralta
8643126Diaz
82588q68Santiago
7451651ZScully
74984988Holt

And i would like to take only values where id end with a number but i've no idea how to do this.

Thanks for the answers!

1 Solution

Accepted Solutions
Ponkaviyarasu
Partner - Contributor III
Partner - Contributor III

Hi Vincent,

Try this

LOad

ID ,

Name

From path

where isnum(Right(ID,1)) = -1;

Regards,

Kavi-

View solution in original post

1 Reply
Ponkaviyarasu
Partner - Contributor III
Partner - Contributor III

Hi Vincent,

Try this

LOad

ID ,

Name

From path

where isnum(Right(ID,1)) = -1;

Regards,

Kavi-