Hello i have 2 tables a issues pleas i need your help :
cashflow :
- id
- commitment
- NAV (But NAV is measure)
investee :
_id
_legalname
I want to get in matrix Top 5 of legalname according [NAV] and display it in matrix like ;
Legalname| %Nav | %commitment
---------------------------
This this measure that i have create
but it's don't work
Thanks in advance
I want to
Solved! Go to Solution.
Hi @ndris ,
First, using TOPN function will return a table not specific value, so it need to create a calculated table not measure...
TOPN(5,
SUMMARIZE(Investee,
Investee[LegalName],
"Test",SUMX(RELATEDTABLE(CashFlows),CashFlows[Commitment])
),[Test]
)
Do you want to get the TOPN legalnames? If yes, you can refer the following links to get it.
How to Create Power BI TOP N Report (Variable TOP N Filter)
3 ways to get TOPN values in Power BI
If the above one is not working for you, please provide some sample data(exclude sensitive data) with Text format and your expected result with special examples and screenshots. It is better if you can provide me a simplified pbix file. Thank you.
Best Regards
Hi @ndris ,
First, using TOPN function will return a table not specific value, so it need to create a calculated table not measure...
TOPN(5,
SUMMARIZE(Investee,
Investee[LegalName],
"Test",SUMX(RELATEDTABLE(CashFlows),CashFlows[Commitment])
),[Test]
)
Do you want to get the TOPN legalnames? If yes, you can refer the following links to get it.
How to Create Power BI TOP N Report (Variable TOP N Filter)
3 ways to get TOPN values in Power BI
If the above one is not working for you, please provide some sample data(exclude sensitive data) with Text format and your expected result with special examples and screenshots. It is better if you can provide me a simplified pbix file. Thank you.
Best Regards
Is this a measure or a calculated column?
Please provide sanitized sample data that fully covers your issue. I cannot help you without meaningful sample data.
Please paste the data into a table in your post or use one of the file services like OneDrive or Google Drive. I cannot use screenshots of your source data.
Please show the expected outcome based on the sample data you provided. Screenshots of the expected outcome are ok.
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
104 | |
73 | |
70 | |
47 | |
46 |
User | Count |
---|---|
161 | |
85 | |
76 | |
68 | |
67 |