Forum Discussion
Comparing between different filters on the same data
- 7 years ago
Thank you Gilbert, I hope you can find a way :). So far its ok for me
If you had some sample data that would be ideal.
What I could think of off the top of my head would be to create 2 measures where each measure is looking at the specific slicer.
Once you have got the 2 measures you could then do additional measures as you described above.
Hi Gilbert, I tried it, thank you for your post.
Yes, in fact, to explain my self better I've created an example you can see in the next link:
https://drive.google.com/drive/folders/1CTzERtALqe0wOccLCvqjZYglbgjdGrMH?usp=sharing
You can see I have a fact table fSales, and two dimension tables: dProduct and dCustomer. What I want to do is to have two sides with independent filters to chose sales of one product in each side, for example, if in the left I choose Product 4, then it says I've sold 365 units, in the other hand at right if I choose Product 2, it says that the quantity sold is 302, until here is ok. But now, I want to have in the middle the difference between those two quantities, in this case is 63. My problem is that I don't know how to capture result 1 and result 2 to do operations, since both are from the same table.
Hope this to be more clear, thank you
Image 1
- GilbertQ7 years agoSuper User
Hi LarBo
I had a look at the PBIX that you sent and I have created a DAX measure that will look at the 2 values in the single slicer and then calculate the difference between them.
What I did was to find the first selection and calculate the quanity.
I then found the second selection and calculated the quanity for this one also.
And then finally I subtracted the two values.
Here is a link to the PBIX: https://1drv.ms/u/s!Apxn-69XhcAmiO9LToMxVVSpPXUTlA
Please let me know if this works as it is something I would like to blog about.
- LarBo7 years agoFrequent Visitor
Hi Gilgert, it's really intersant what you did :).
What you did was very interesting, congratulations! You took the highest selection as the first number and the lowest one with the second number. Thank you so much.
However, my users want to have a separate filter for each of the products, because below they will have a detail per customer that bought each item and have everything in one, although it works, it will not be very practical, is it possible to do that?
- GilbertQ7 years agoSuper UserHi there
Thanks for the kind words
As far as I can currently see I cannot think of a way to have separate slicers to filter the data and measures.
I will think about it some more, but off the top of my head I am not sure if it can be done.