Forum Discussion

Giovanni's avatar
Giovanni
Regular Visitor
7 years ago
Solved

IRR progressivo

buongiorno Avrei necessita di inserire delle formule su power bi che non riesco a fare autonomamente   In particolare, vorrei importare una tabella simile alla seguente   Date Cash Flow ...
  • v-chuncz-msft's avatar
    7 years ago

    Giovanni ,

     

    You may try the DAX below.

    IRR =
    IFERROR (
        XIRR (
            FILTER ( ALLSELECTED ( Tabella1 ), Tabella1[Date] <= MAX ( Tabella1[Date] ) ),
            Tabella1[Cash Flow],
            Tabella1[Date]
        ),
        -1
    )