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! Request now
Hello,
I would like to create a measure which brings all data except for a selected filter option.
Ex:
* Filter Region (Latam, US, Europe)
* Sales
When I select the filter Region Latam, I would like to see only the sales from US and Europe.
Solved! Go to Solution.
@Anonymous
You may take a look at the posts below.
Since my filters involved other metrics, this was solved by creating another table from the one where the data is.
I linked the new table with the filter's one with the respective Region_ID needed for the analysis.
Thanks to all!
@Anonymous
You may take a look at the posts below.
Try
measure =
var _reg = except(Region[Region],allselected(Region[Region])
return
calculate(sum(sales[sales]),filter(all(Region),Region[Region] in _reg))
//or
//calculate(sum(sales[sales]),filter(all(Region),Region[Region] = _reg))
See if Inverse Selector works for you. https://community.powerbi.com/t5/Quick-Measures-Gallery/Inverse-Selector/m-p/648290#M325
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 92 | |
| 69 | |
| 50 | |
| 40 | |
| 38 |