Forum Discussion
AllanBerces
9 months agoPost Prodigy
Date With Progress
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 col...
- 9 months ago
- 9 months ago
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!
wardy912
9 months agoSuper User
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!
AllanBerces
9 months agoPost Prodigy