Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Hi,
I need a help on DAX, I want to filter the 'Net Available Hours' only based on the 'Resource Region' filter. The 'Billable hours' should not get filtered out. It should remain 112,462 only. Screenshot is below:-
Hi @Amitkr174 ,
I believe you need a disconected table for it:
Create a new table using the region values: Region = VALUES('Table'[REGION])
Do not relate it with any table and use it as slicer.
Create your measures:
If you consider it as a solution, please mark as a solution and kudos.
Ricardo
Thanks @camargos88 for your reply!
Issue is that I using direct query here and I don't have rights to modify a table.
Is there any other way via which this can be resolved?
You don't need to change your source, just remove the relationship in Power BI.
If you want, you can duplicate the region values as table and use this example.
Did I answer your question? Mark my post as a solution!
Ricardo
@camargos88 - Data is flowing from SSAS cube into Power bi and we cannot modify the structure of the ERD. Below is the screenshot of the different objects in the cube:-
Can't you try creating another query import just this region table to your model ?
No we don't have that option.
We have the option to use only DAX.
I hope you have a separated table for region...try this one:
So, you need to use ALLEXCEPT in that case. Something along the lines of:
CALCULATE(SUM([Billable Hours]),ALLEXCEPT('Table'[Resource Region]))
Hi - This is not working.
Replacre it with the exact dax
Hi Amit,
It will work if you calculate the measure in the MEASURE 3 itself ,It will not work if you call it from earlier created DAX Measure.
Hi Vikram,
This is not working. Please see the screenshot.
Hi Amit,
Don't use flying measures.
Use like below example:
MeasureName= CALCULATE(SUM(BILLING HOURS),ALLEXCEPT(Utilization,Utilization[Resource Practice]))
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 | |
| 4 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 8 | |
| 8 | |
| 7 |