Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hay,
how do i write not equel in sat analysis
count({<orders={>0}>}packing
thanks'
yarin
You may need quotes:
count({<orders={">0"}>}packing
but its hard to be sure without knowing your data model...
May be like this:
Count({<orders = {'<>0'}>} packing)
count({<orders-={>0}>}packing
with "-="
You may need quotes:
count({<orders={">0"}>}packing
but its hard to be sure without knowing your data model...
try this
Count({<Orders-={>0'}>}Packing)
orelse
you can use -= to exclude a value
Count({<Orders-={">0"}>} DISTINCT Packing)
You can use the expression:
=count({<Orders={"*"}-{"0"}>}Distinct Packing)
It will work