Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi can anyone help me on my calculated column and measure. What i required is the sum of each trade base on the column date
Desired output
measure
| Trade | Progress | column date |
| Mech | 6.66 | 10/27/2025 0:00 |
| Plumber | 1.61 | |
| Strcut | -0.4 | |
| Mech | 0.11 | 10/27/2025 0:00 |
| Plumber | 0.1 | |
| Strcut | 0.1 | |
| Plumber | -0.4 | |
| Mech | 14.8 | 10/27/2025 0:00 |
| Mech | 0.12 | 10/27/2025 0:00 |
| Strcut | 0.21 | |
| Plumber | 9.64 | |
| Strcut | 0.11 | |
| Plumber | 0.1 | |
| Plumber | 3.21 | |
| Strcut | 4.12 | |
| Civil | 1.39 | 10/27/2025 0:00 |
| Civil | 0.89 | 10/27/2025 0:00 |
| Civil | 0.68 | 10/27/2025 0:00 |
| Strcut | -0.4 | |
| Strcut | 0.1 | |
| Plumber | 3.21 | |
| Strcut | 0.1 | |
| Plumber | 3.21 | |
| Civil | 0.57 | 10/27/2025 0:00 |
| Elect | 8.62 | 10/27/2025 0:00 |
| Elect | 6.66 | 10/27/2025 0:00 |
| Elect | 6.66 | 10/27/2025 0:00 |
| Plumber | 0.1 | |
| Strcut | 12.05 | |
| Plumber | 0.42 | |
| Strcut | 1.25 |
Solved! Go to Solution.
Hi @AllanBerces
Add a calculated column as follows:
TotalProgressByDate =
IF(
NOT(ISBLANK('Trade'[column date])),
CALCULATE(
SUM('Trade'[Progress]),
FILTER(
'Trade',
'Trade'[column date] = EARLIER('Trade'[column date]) &&
'Trade'[Trade] = EARLIER('Trade'[Trade])
)
)
)
This will give you the following result:
--------------------------------
I hope this helps, please give kudos and mark as solved if it does!
Connect with me on LinkedIn.
Subscribe to my YouTube channel for Fabric/Power Platform related content!
Hi @AllanBerces
Add a calculated column as follows:
TotalProgressByDate =
IF(
NOT(ISBLANK('Trade'[column date])),
CALCULATE(
SUM('Trade'[Progress]),
FILTER(
'Trade',
'Trade'[column date] = EARLIER('Trade'[column date]) &&
'Trade'[Trade] = EARLIER('Trade'[Trade])
)
)
)
This will give you the following result:
--------------------------------
I hope this helps, please give kudos and mark as solved if it does!
Connect with me on LinkedIn.
Subscribe to my YouTube channel for Fabric/Power Platform related content!
Calculated Column to flag rows with a date:
HasDate = NOT(ISBLANK('YourTable'[column date]))
Measure to sum progress by trade for rows with a date:
Progress by Trade with Date = CALCULATE( SUM('YourTable'[Progress]), FILTER('YourTable', NOT(ISBLANK('YourTable'[column date]))) )
Use this in a matrix with Trade as rows and column date as a filter or slicer.
HI @Shahid12523 thank you for the reply but dont show the rigth answer, for calculated show only true and false and for measure same number for all the trade.
Use this calculated column (not a measure):
TotalProgressByDate =
CALCULATE(
SUM('Trade'[Progress]),
FILTER(
'Trade',
'Trade'[Trade] = EARLIER('Trade'[Trade]) &&
'Trade'[column date] = EARLIER('Trade'[column date])
)
)
This gives the sum of Progress for each Trade on the same Date — not just TRUE/FALSE, and not the same number for all trades.
If this response was helpful, please accept it as a solution and give kudos to support other community member.
Check out the April 2026 Power BI update to learn about new features.
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.
| User | Count |
|---|---|
| 43 | |
| 35 | |
| 33 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 64 | |
| 59 | |
| 31 | |
| 27 | |
| 25 |