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
Hi,
I have a (for me) complex DAX expression showing the average hours taken to move a work item out of 'new' status.
I want to have a bar chart that shows the number of work orders that are above 48 hours, and the number that are below (stacked to 100%)
How can I achieve this?
Assuming you have a fact table named 'Fact Orders', a field named "Order Number" and the measure [
Average Hours]:
Assuming you have a fact table named 'Fact Orders', a field named "Order Number" and the measure [
Average Hours]:
Orders over 48 Hours =
COUNTROWS(
FILTER(VALUES('Fact Orders'[Order Number]),
[Average Hours]>48
)
)
Orders Within 48 Hours =
COUNTROWS(
FILTER(VALUES('Fact Orders'[Order Number]),
[Average Hours]<=48
)
)
Place those two in a 100% stacked bar chart and you should be good to go.
Place those two in a 100% stacked bar chart and you should be good to go.
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 |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |