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: 
SDeLa131
Contributor III
Contributor III

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') ;