Forum Discussion
dmbd1904
6 years agoHelper III
XIRR DAX Help
Hi I've been trying for hours to make this work without success. Does anybody know if it's possible to use a measure as the cashflow part of a XIRR function? Measure 2 = VAR CALC2= (-CALCULAT...
v-xicai
6 years agoCommunity Support
Hi dmbd1904 ,
For the article of XIRR function, we know the table in function is like cashflow table instead of a calendar table, You may change the formula like DAX below. Or you may show us your formula error message for further analysis.
Syntax: XIRR(<table>, <values>, <dates>, [guess])
Measure 2 =
VAR CALC2=
(-CALCULATE(
SUM('Asta'[Property Commercial Value]),Asta[Activity]="Ready to Snag",Asta[Attribute]="Forecast Finish"))
+
CALCULATE(
SUM('Salesforce Properties'[Agreed_Price__c]),USERELATIONSHIP('Calendar'[Date],'Salesforce Properties'[Forecast_Closed_Date_Sales__c]))
RETURN XIRR('Asta',CALC2,'Calendar'[Date])
For reference:
Solution to XIRR with Terminal Values
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.