Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi Every one,
I developed a calculated column as below for cumulative line to sum actual man hours , but it doesnt sum up at all !
Cumulative Actual = CALCULATE ( sum ( 'PBI LabourCode_Actual'[ActualsManHours] ), FILTER ( ALL ( 'PBI LabourCode_Actual'), 'PBI LabourCode_Actual'[WorkDate] <= MAX ( 'PBI LabourCode_Actual'[WorkDate] ) ) )
As you can see in the above table, cumulative data is showing wrong numbers
Solved! Go to Solution.
Hi,
Create a Calendar Table and build a relationship from the WorkDate column of the PBI LabourCode_Actual Table to the Date column of the Calendar Table. In your visual, drag Date from the Calendar Table. Write this measure
Cumulative Actual =
CALCULATE (
sum ( 'PBI LabourCode_Actual'[ActualsManHours] ),DATESYTD(Calendar[Date],"31/12"))
Hope this helps.
Hi,
Create a Calendar Table and build a relationship from the WorkDate column of the PBI LabourCode_Actual Table to the Date column of the Calendar Table. In your visual, drag Date from the Calendar Table. Write this measure
Cumulative Actual =
CALCULATE (
sum ( 'PBI LabourCode_Actual'[ActualsManHours] ),DATESYTD(Calendar[Date],"31/12"))
Hope this helps.
You are welcome.
@Anonymous ,
Modify the measure as below and check if it can meet your requirement.
Cumulative Actual =
CALCULATE (
SUM ( 'PBI LabourCode_Actual'[ActualsManHours] ),
ALLEXCEPT ( 'PBI LabourCode_Actual', 'PBI LabourCode_Actual'[Date] )
)
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous Please try changing your logic as below
Cumulative Actual =
CALCULATE (
sum ( 'PBI LabourCode_Actual'[ActualsManHours] ),
FILTER (
ALL ( 'PBI LabourCode_Actual'),
'PBI LabourCode_Actual'[WorkDate] <= EARLIER ( 'PBI LabourCode_Actual'[WorkDate] )
)
)
Proud to be a PBI Community Champion
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 51 | |
| 37 | |
| 35 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 64 | |
| 39 | |
| 33 | |
| 23 |