March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I have order numbers, sub order numbers, planned time and actual time for each sub order. 1 order having multiple sub orders. I want to find count of orders where, summation of actual time is greater than summation of planned time. There are thousands of entries for orders.
In other words, I want pivot table of my data and then using that result i want to plot graphs. I want to do it using Dax.
Solved! Go to Solution.
Hi @Rajeshree ,
You can use "SUM" function in Dax to calculate summation of planned time/ actual time. I create a sample to have a test.
Measure:
Count of Orders Sum of Actual time > Sum of Planned time =
VAR _T =
SUMMARIZE (
'Table',
'Table'[Order numbers],
"Planned time Duration", CALCULATE ( SUM ( 'Table'[Planned time] ) ),
"Actual time Duration", CALCULATE ( SUM ( 'Table'[Actual time] ) )
)
RETURN
COUNTAX (
FILTER ( _T, [Actual time Duration] > [Planned time Duration] ),
[Order numbers]
)
In my sample, only "Order 2" 's summation of actual time is greater than summation of planned time. So measure should return 1. Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Rajeshree ,
You can use "SUM" function in Dax to calculate summation of planned time/ actual time. I create a sample to have a test.
Measure:
Count of Orders Sum of Actual time > Sum of Planned time =
VAR _T =
SUMMARIZE (
'Table',
'Table'[Order numbers],
"Planned time Duration", CALCULATE ( SUM ( 'Table'[Planned time] ) ),
"Actual time Duration", CALCULATE ( SUM ( 'Table'[Actual time] ) )
)
RETURN
COUNTAX (
FILTER ( _T, [Actual time Duration] > [Planned time Duration] ),
[Order numbers]
)
In my sample, only "Order 2" 's summation of actual time is greater than summation of planned time. So measure should return 1. Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Rajeshree , Not very clear. In the visual like bar, you can explore small multiple
or I matrix you try add trend line (sparklines) etc -https://community.powerbi.com/t5/Quick-Measures-Gallery/SVG-Sparklines-Line/td-p/486271
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |