- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Not finding the solution for XIRR error though all looks good
Hi, Please someone solve my query. I am not sure where i am missing the steps for generating IRR. I am strugling a lot for finding the right solution. Provided all the data below with calculations, tables. Thanks in advance.
In Excel, it's getting IRR for fund A is 3.11%, B is 46% and total IRR is 3.35%
Backend calcualtion
1) Running total =
2/5/2024 | B | 10000 | 0 | 0 | 0 |
3/5/2024 | B | 0 | 100 | 0 | 100 |
4/5/2024 | B | 0 | 50 | 0 | 50 |
5/5/2024 | B | 0 | 25 | 0 | 26 |
6/5/2024 | B | 0 | 500 | 0 | 502 |
7/5/2024 | B | 0 | 0 | 100 | -100 |
8/5/2024 | B | 0 | 0 | 0 | 0 |
9/5/2024 | B | 0 | 75 | 0 | 75 |
10/5/2024 | B | 0 | 0 | 250 | -250 |
3/5/2023 | A | 20000 | 0 | 0 | 0 |
4/5/2023 | A | 0 | 1000 | 0 | 1000 |
5/5/2023 | A | 0 | 45 | 0 | 45 |
6/5/2023 | A | 0 | 0 | 25 | -25 |
7/5/2023 | A | 0 | 26 | 0 | 36 |
8/5/2023 | A | 0 | 35 | 45 | -10 |
9/5/2023 | A | 0 | 100 | 0 | 100 |
10/5/2024 | A | 0 | 0 | 0 | 26 |
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi, @Nagesh20
Maybe you can try to modify the DAX:
Total Cash_NAV =
VAR currentdate = Table1[Date]
VAR Currentfun = Table1[Fund]
VAR filter_table = FILTER(Table1, Table1[Date] <= currentdate && Table1[Fund] = Currentfun)
VAR runtotal = CALCULATE(SUM(Table1[Daily NAV]), filter_table) -- Running Total
VAR _maxdate_per_fund = CALCULATE(MAX(Table1[Date]), FILTER(ALLSELECTED(Table1), Table1[Fund] = Currentfun)) -- Calculate max date per Fund
VAR filter_table2 = FILTER(Table1, Table1[Date] = currentdate && Table1[Fund] = Currentfun) -- Matching date with Fund name
VAR Total = -SWITCH(TRUE(),
MAX(Table1[Date]) = _maxdate_per_fund, runtotal,
MAX(Table1[Date]) < _maxdate_per_fund, 0,
0
) + CALCULATE(SUM(Table1[Call]) - SUM(Table1[Distribution]), filter_table2) -- (-Ending NAV + Calls - Distribution)
RETURN
IF(Total = 0, 0.001, Total)
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data)
How to Get Your Question Answered Quickly
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi, @Nagesh20
Maybe you can try to modify the DAX:
Total Cash_NAV =
VAR currentdate = Table1[Date]
VAR Currentfun = Table1[Fund]
VAR filter_table = FILTER(Table1, Table1[Date] <= currentdate && Table1[Fund] = Currentfun)
VAR runtotal = CALCULATE(SUM(Table1[Daily NAV]), filter_table) -- Running Total
VAR _maxdate_per_fund = CALCULATE(MAX(Table1[Date]), FILTER(ALLSELECTED(Table1), Table1[Fund] = Currentfun)) -- Calculate max date per Fund
VAR filter_table2 = FILTER(Table1, Table1[Date] = currentdate && Table1[Fund] = Currentfun) -- Matching date with Fund name
VAR Total = -SWITCH(TRUE(),
MAX(Table1[Date]) = _maxdate_per_fund, runtotal,
MAX(Table1[Date]) < _maxdate_per_fund, 0,
0
) + CALCULATE(SUM(Table1[Call]) - SUM(Table1[Distribution]), filter_table2) -- (-Ending NAV + Calls - Distribution)
RETURN
IF(Total = 0, 0.001, Total)
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data)
How to Get Your Question Answered Quickly
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi all,
Finally i found the solution for the below query using calculated column. Only one concern is left i.e. Ending NAV is taking based on max date in the date column rather than max date of the Fund (tried to figure out this mutliple times), resulting IRR error is getting for Fund C. Please someone fix this issue using colculated column than measure. I am almost close to the answer. Thanks in advance

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
09-19-2024 12:12 PM | |||
08-23-2024 05:59 PM | |||
08-20-2024 07:43 AM | |||
07-24-2024 01:22 AM | |||
09-13-2024 11:34 AM |
User | Count |
---|---|
140 | |
110 | |
81 | |
60 | |
46 |