Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
is there a way to do a measure that has a filter with ALLSELECTED from all tabels ? , I have about 25 filters .
example of 1 filter:
CALCULATE(sumx('Table',[measure]),
Solved! Go to Solution.
// Your measure needs to be built
// in a certain way.
calculate(
[your measure - its full definition or its plain name here],
allselected( facttable1 ),
allselected( facttable2 ),
...
)
// As many facttables must be accounted for
// as there are dimensions affected and connected
// to them. Also, only the fact tables count
// which the measure in question depends on.
// Your measure needs to be built
// in a certain way.
calculate(
[your measure - its full definition or its plain name here],
allselected( facttable1 ),
allselected( facttable2 ),
...
)
// As many facttables must be accounted for
// as there are dimensions affected and connected
// to them. Also, only the fact tables count
// which the measure in question depends on.
Thanks EXACTLY what i needed,
THANK YOU !!!
Yes, there is but it also depends on the layout of your model. If you put ALLSELECTED( YourFactTable ) as a directive in CALCULATE(TABLE), it'll combine filters from all dimensions that are connected to your fact table by many-to-one (chain of) relationships.
Thank you,
Thank you
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |