Forum Discussion
Excel formula to Power BI
- Anonymous7 years ago
=CALCULATE (
SUM ( Table1[NET OWING] ),
FILTER ( Table1, Table1[Date] >= ( TODAY () - 15 ) )
) - Anonymous7 years ago
It'll basically be the same formula but twice, with the days changed to 59 and 29
CALCULATE (
SUM ( Table1[NET OWING] ),
FILTER ( Table1, Table1[Date] >= ( TODAY () - 59 ) )
)
- CALCULATE (
SUM ( Table1[NET OWING] ),
FILTER ( Table1, Table1[Date] >= ( TODAY () - 29 ) )
)
=CALCULATE (
SUM ( Table1[NET OWING] ),
FILTER ( Table1, Table1[Date] >= ( TODAY () - 15 ) )
)
Thanks Chirayuw.
Can you help me again to covert the excel formula below?
=SUMIFS([@[NET OWING]],[@Date],">="&TODAY()-59)-SUMIFS([@[NET OWING]],[@Date],">="&TODAY()-29)
- Anonymous7 years agoNot applicable
It'll basically be the same formula but twice, with the days changed to 59 and 29
CALCULATE (
SUM ( Table1[NET OWING] ),
FILTER ( Table1, Table1[Date] >= ( TODAY () - 59 ) )
)
- CALCULATE (
SUM ( Table1[NET OWING] ),
FILTER ( Table1, Table1[Date] >= ( TODAY () - 29 ) )
)