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

List products not used

Hi,

I have a report listing all orders of a pirticular product, supplier, location and period.

the script has a Orders table and seperate tables for list of products, suppliers, location.

i would like to make a chart/table of all products which have not been orderd (having no records in orders table) for a given period and given suppliers.

Any suggestions on how can we do that ?

Thank you.

kind regards,

Devang.

1 Solution

Accepted Solutions
lironbaram
Partner - Master III
Partner - Master III

put product in dimension

the write this expression

if(count(OrderdId)=0,1,0)

View solution in original post

2 Replies
lironbaram
Partner - Master III
Partner - Master III

put product in dimension

the write this expression

if(count(OrderdId)=0,1,0)

Not applicable
Author

Thanks Iiron, that helped. Exactly what i was looking for. 🙂