cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
juliliscarmo
Helper I
Helper I

Measure to calculate IRR

Hi all,

 

I'm trying to find a way to calculate the IRR, not the XIRR, just IRR. 

 

Thank you

Juli

7 REPLIES 7
Logendran
Frequent Visitor

Hello Team, IS there any updates for this XIRR function grouping by category. Eg: I have to calculate XIRR value for different projects which was in same table. 

Logendran_0-1678459568496.png

 

Kindly help on this case Thank you M Logendran

LivioLanzo
Solution Sage
Solution Sage

 

There is no IRR built in function, but you can calculate it like it with a workaround

 

Capture.PNG

 

 

IRR % =
XIRR (
    ADDCOLUMNS (
        Data,
        "Date365", CALCULATE (
            COUNTROWS ( Data ),
            Data[Date] < EARLIER ( Data[Date] ),
            ALL ( Data )
        )
            * 365
            + CALCULATE ( MIN ( Data[Date] ), ALL ( Data ) )
    ),
    [Amount],
    [Date365]
)

 

The above measure returns 8.41%

 


 


Did I answer your question correctly? Mark my answer as a solution!


Proud to be a Datanaut!  

Hi @LivioLanzo

 

Unfortunately, this formula is not working well when I have blank cells. Do you have any idea why?
I really appreciate your help, please see below my table format.

 

ClientCategoryDateValueValues Last 1 year
1A1/1/2017300.00-300.00
1B1/1/2017200.00 
1B1/2/2017150.00150.00
1C4/2/2017250.00250.00
1C4/2/2017400.00400.00
1A8/2/2017230.00230.00
1B8/7/2017300.00 
2B8/7/2016300.00 
2A9/7/2016500.00-500.00
2B9/17/2016300.00300.00
2C9/7/2017150.00150.00
2A9/7/2017200.00200.00

Thank you

Juli

Hi @juliliscarmo

 

On which column are you calculating it ?  You may need to filter out blank cells

 

 

 


 


Did I answer your question correctly? Mark my answer as a solution!


Proud to be a Datanaut!  

Hi @LivioLanzo

 

I am calculating in Values Last 1 Year, I tryed to filter out blank cells but it didnt work.  In Values Last 1 Year, first A need to be negative and last positive, I made a calculated column for that.

@juliliscarmo

 

Are you doing this via a calculated column or measure?

how do you calculate value last year? it does not match the actual value of last year

 

 

 


 


Did I answer your question correctly? Mark my answer as a solution!


Proud to be a Datanaut!  

Hey @LivioLanzo

 

I did via calculated column, the last year is based in the database, as if I have last data in 12/2015 the last year will be 12/2014, for "X" client.

 

Thank you

Juli

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Top Solution Authors