Forum Discussion
Intersection Issue in DAX
Anonymous
You can share your file with me if you like.
Are you using some VISUAL or PAGE level filters?
Hi,
Yes i m using multiple page level filters. Though following DAX is helping in case of Intersection.
But not able to filtered out on DAX Level.
| Item | Customer | QTY |
| Item1 | cust1 | 4 |
| Item1 | cust2 | 56 |
| Item1 | cust3 | 78 |
| Item2 | cust3 | 3 |
| Item2 | cust4 | 30 |
| Item2 | cust2 | 40 |
| Item2 | cust5 | 67 |
| Item3 | cust3 | 40 |
| Item3 | cust2 | 34 |
What i m getting is count of 2 customers if i do multiselect on Item1 and Item2 and Item3.
But what i want to consider average quantity measure first (that means only consider those customer list where average quantity is greater than 10) which would be:
| Item | Customer | QTY |
| Item1 | cust2 | 56 |
| Item1 | cust3 | 78 |
| Item2 | cust4 | 30 |
| Item2 | cust2 | 40 |
| Item2 | cust5 | 67 |
| Item3 | cust3 | 40 |
| Item3 | cust2 | 34 |
Now if i apply same DAX over here i will get output of 1 customer who bought item1 and Item2 and Item2, which is accurate
I do not want to apply filter after applying DAX of intersection, rather before doing so i prefer to identify customers based on measure.
Please help!