The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello everyone,
I have this table
coming from a big fact table which contains dates (Start & end date of campaing). This table concerns aggragated data.
My dashboard also have this date slicer
which is coming from a date table and have no relationship with the fact table.
How is it possible to filter the aggragated table with the slicer dates by using a measure a DAX?
Thank you!
Hi , @IliasKatsis
You can use the FILTER() function, and the ALLSELECTED() function to filter your fact table like this:
var _min_slicer = MIN('Date'[Date])
var _max_slicer = MAX('Date'[Date])
var _t=FILTER(ALLSELECTED('fact table'), 'fact table'[Date] >=_min_slicer && 'fact table'[Date] <= _max_slicer )
return _t
Then you can get the table you want, and then you also can use MAXX() and MINX() and so on functions you want to get the value.
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @IliasKatsis
Why aren't you connecting the date table to the fact table so you can filter with the slicer? This is the way PBI is intended to work. Looks like you are making things hard for yourself??
Regards
Phil
Proud to be a Super User!
Thanks for your answer but i want to achieve a spesific type of filtering now and the table connection does not help me
Thank you!
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
110 | |
80 | |
66 | |
53 | |
52 |
User | Count |
---|---|
121 | |
117 | |
77 | |
64 | |
63 |