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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
paulwalker
Creator III
Creator III

Help..

Hi,

Type

A00E

A001

A009

M00E

K009

M09E

How to exclude ending with E
O/p would be

Type

A001

A009

K009

3 Replies
datanibbler
Champion
Champion

Hi Paul,

have a look at String-functions - in particular, LEFT(), RIGHT(), MID()

HTH

Best regards,

DataNibbler

Nicole-Smith

Type:

LOAD * INLINE [

Type

A00E

A001

A009

M00E

K009

M09E

]

where right(Type,1) <> 'E';

qv_testing
Specialist II
Specialist II

You can use where condition

like this

where right(Type,1) <> 'E';