Forum Discussion
Adding previous Rows values
Thank you for your prompt response, the solution is not giving me the end result what I what I am looking i have explanied ine the below screenshot. Please help me I one formula below however it's not giving the result. Thanks
Formula => Running Fleet =
IF(
MIN([Date].[Year]) <= CALCULATE(MAX([Date].[Year]),ALL('Fact Contract')),
CALCULATE(([Registrations]-[Terminations]),FILTER(ALL('Fact Contract'[Date].[Year]),'Fact Contract'[Date].[Year]<=MAX(('Fact Contract'[Date].[Year])))),BLANK())--- it's not working
Please assit. Thanks
Regards
Suhel
Suhel_Ansari , Better move out the year in a separate table, like second formula.
Formula => Running Fleet =
CALCULATE(([Registrations]-[Terminations]),
FILTER(ALL('Fact Contract'),'Fact Contract'[Date].[Year]<=MAX('Fact Contract'[Date].[Year])))
or
Formula => Running Fleet =
CALCULATE(([Registrations]-[Terminations]),
FILTER(ALL('Date'),'Date'[Year]<=MAX('Date'[Year])))
You can add if as per need
- Suhel_Ansari6 years agoHelper V
- amitchandak6 years agoSuper User
Suhel_Ansari , what is formula for
[Registrations] , [Terminations]
And the Year in visual is also coming from Year Table? Row/group by/Axis should be from Year table
- Suhel_Ansari6 years agoHelper V