I have a table like this.
| Customer ID | Product |
|---|---|
| 1 | Apple |
| 2 | Apple |
| 2 | Orange |
| 3 | Apple |
| 4 | Orange |
As you can see, Customer 2 bought both Apple & Orange.
I want to count these customers who bought BOTH Apple & Orange.
To do that, I made the following variable.
No. of Customer
=count([ID]) Where ([Product] InList("Apple";"Orange")
Problem is that it counts every customer who has apple OR orange.
How can you do Both in Inlist()?
Is there such thing as:
InList(Both())...
InList(All())...
Could anyone please help me...?