Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone,
I have two pivot tables in my worksheet. The first table contains the orders of a week for a machine. One column contains 'yes' or 'no':
Order-No. yes or no?
1 no
2 no
3 yes
4 no
5 yes
6 yes
7 no
In the second pivot table contains all machines. I want to count the number of orders and the number of 'yes' items. I already have the total number of orders but I have problems with the "yes-items"
Orders total yes-items
7 3
Can you help me with the correct expression? I tried a lot with count (if()).
Thanks!
That expression counts distinct OrderNums. Maybe you are looking for:
Count({<yes-items={'yes'}>} yes-items)
JG
Thanks @JuanGerardo, I tried this, but as result I get 7 yes-items instead of 3 yes-items 🤔
That expression counts distinct OrderNums. Maybe you are looking for:
Count({<yes-items={'yes'}>} yes-items)
JG
Thank you! 😊