Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi Community,
I have the following Pbix file:
https://www.dropbox.com/scl/fi/abmejaz39t7g6xro9z5d1/Test.pbix?rlkey=yv4pq8igcv8jw9jouovh55n5u&dl=0
I have a disconnected date table called PIDate which I use together with a filter Piname to select rows from the fact table (which is displayed in the table visual) based on the time frame in the PIDate. This works great together with a measure I have added to the table visual:
I also have a main date table called DimDate, which relates to the fact table.
My main issue is that the pie chart does not get filtered based on the time frame from the PiDate when I select from the Piname filter. I have also tried writing a similar dax and applying it to the pie chart visual, but it doesn't work. How can I filter the pie chart based on the Piname filter. Your help is much appreciated.
Solved! Go to Solution.
Hi @Anonymous ,
Consider creating a virtual table and using it to iteratively sum.
For example:
Skipped 2 =
SUMX (
FILTER (
SUMMARIZE (
'Fact',
'Fact'[tsexecutionid],
"filtervalue", [IsActiveMeasure],
"skipped", SUM ( 'Fact'[skipped] )
),
[filtervalue] = 1
),
[skipped]
)
Output:
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Hi @Anonymous ,
Consider creating a virtual table and using it to iteratively sum.
For example:
Skipped 2 =
SUMX (
FILTER (
SUMMARIZE (
'Fact',
'Fact'[tsexecutionid],
"filtervalue", [IsActiveMeasure],
"skipped", SUM ( 'Fact'[skipped] )
),
[filtervalue] = 1
),
[skipped]
)
Output:
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Thanks @v-cgao-msft it works great, I never thought of that 🙂
I just adjusted it a bit to show all the data if nothing is selected, I hope that you agree 🙂
Hi @Anonymous ,
You can use USERELATIONSHIP() DAX to get the operation done if the tables are connected without actually connecting the tables.
This requires an inactive relationship to be present between the tables. Although this looks like the tables are connected, the join doesn't work unless you use the earlier said DAX funcrton
Regards,
Hi, this will not work.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
86 | |
81 | |
70 | |
49 |
User | Count |
---|---|
143 | |
124 | |
107 | |
60 | |
55 |