Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am writing the expressions like this to get small,medium,large.
For small---> Count({$<Size={"<$(vLBound)"}>} Debris) i,e Size <= A
For Large ----> Count({$<Size={">$(vUBound)"}>} Debris) i.e Size >=B
How can i write the expression for medium ? i.e A < Size < B
Try something like this:
Count({$<Size={">$(vLBound)<$(vUBound)"}>} Debris)
Regards.
Thanks for u r solution.....it's working