Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi there,
I'm working on a Funds Under Management model and have hit somewhat of a roadblock and what appreciate some help in solving the required DAX.
We have a model similar to the one below (The example is quite simplified):
An explanation of the tables:
The calculation of Funds Under Management can be done via two measure (not sure on this?):
These are my thoughts on going on about this, not sure if I'm doing this correctly or not, any and all help would be appreciated.
PBIX file with sample data: https://1drv.ms/u/s!AgRCl9UMoU6bgk-3d02tQqOA48oU
TIA
Solved! Go to Solution.
Hi @Anonymous ,
What is your desired reuslt? I have tested for your first problem but I could understand other issues:
and last known price for the corresponding fund (from Funds Price) at any given date (from Reporting Date)
Do the same as method 1 but first sum the last known running totals grouped by the fund and then multiply by the last known price for the fund
For the first issue about Summing the result of all the products of the last known running total of an account (from Transactions):
Create a Rank column:
Rank = COUNTROWS(FILTER('Transactions','Transactions'[Transaction Date]<=EARLIER(Transactions[Transaction Date])&&'Transactions'[Account]=EARLIER(Transactions[Account])))
Create below measures:
Measure = IF(CALCULATE(SUM(Transactions[Rank]))=CALCULATE(MAX('Transactions'[Rank]),FILTER(ALL('Transactions'),'Transactions'[Account]=MAX('Transactions'[Account]))),CALCULATE(SUM(Transactions[Running Total])),BLANK())
Sum = SUMX('Transactions',[Measure])
Result:
Could you please offer me more information and post your desired result if possible?
Regards,
Daniel He
Hi @Anonymous ,
What is your desired reuslt? I have tested for your first problem but I could understand other issues:
and last known price for the corresponding fund (from Funds Price) at any given date (from Reporting Date)
Do the same as method 1 but first sum the last known running totals grouped by the fund and then multiply by the last known price for the fund
For the first issue about Summing the result of all the products of the last known running total of an account (from Transactions):
Create a Rank column:
Rank = COUNTROWS(FILTER('Transactions','Transactions'[Transaction Date]<=EARLIER(Transactions[Transaction Date])&&'Transactions'[Account]=EARLIER(Transactions[Account])))
Create below measures:
Measure = IF(CALCULATE(SUM(Transactions[Rank]))=CALCULATE(MAX('Transactions'[Rank]),FILTER(ALL('Transactions'),'Transactions'[Account]=MAX('Transactions'[Account]))),CALCULATE(SUM(Transactions[Running Total])),BLANK())
Sum = SUMX('Transactions',[Measure])
Result:
Could you please offer me more information and post your desired result if possible?
Regards,
Daniel He
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
80 | |
76 | |
61 | |
36 | |
32 |
User | Count |
---|---|
91 | |
60 | |
59 | |
49 | |
45 |