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

help with formula

trying to create a formula for pulling only orders that do not have 000 as the ending factor.  The field is only 3 characters long but yet each formula I try still pulling orders that have 000.  

example is backorderNu > 000   is really what I need nothing fancy. 

 

 

2 Replies
vishsaggi
Champion III
Champion III

Try this?

Trim(backOrderNu) > 000

Is this field numeric or char? 

or 

Trim(BackOrderNu) <> '000'

bharathadde
Creator II
Creator II

if you want to limit data on the script level

Load

Ordernum

from table

where not WildMatch(OrderNum,'*000') ;