Forum Discussion
Filter Pie chart based on disconnected date table
- Anonymous2 years ago
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 TeamIf 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 ,
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.