Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

set analysis not equel

hay,

how do i write not equel in sat analysis

count({<orders={>0}>}packing

thanks'

yarin

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

You may need quotes:


count({<orders={">0"}>}packing


but its hard to be sure without knowing your data model...

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

6 Replies
sunny_talwar

May be like this:

Count({<orders = {'<>0'}>} packing)

Not applicable
Author

count({<orders-={>0}>}packing



with "-="

jonathandienst
Partner - Champion III
Partner - Champion III

You may need quotes:


count({<orders={">0"}>}packing


but its hard to be sure without knowing your data model...

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Chanty4u
MVP
MVP

try this

Count({<Orders-={>0'}>}Packing)

Chanty4u
MVP
MVP

orelse

you can use -= to exclude a value

Count({<Orders-={">0"}>} DISTINCT Packing)

saimahasan
Partner - Creator III
Partner - Creator III

You can use the expression:

=count({<Orders={"*"}-{"0"}>}Distinct Packing)

It will work