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.
1. I have a consolidated portfolio table which has fund, security, port wt, esg flag, si flag, asset class, path etc. Now i need to calculate sum(port wt) with filters as security type in (abs,cmbs,mbs) and path in (asset backed).
2. for 4 specific funds i need exclusive filters. for funds ntgf-gbp, ntgflf-eur, ntgf-usd and osgcu sum(port wt) if asset class is sovereign and si flag is 1 that row should be considered and it asset class is sovereign and si flag is 0 that ro should be excluded from sum(port wt).
Point 1 filters should apply for all funds including the funds in point2.
Point 2 filters should be applied to only those 4 funds.
All these needs to be done in single measure and i need port wt.
Hi @sravan872
Thank you for reaching out to the Microsoft fabric community forum. Thank you @FBergamaschi for your inputs on this issue.
After thoroughly reviewing the details you provided, I was able to reproduce the scenario, and it worked on my end. I have used it as sample data on my end and successfully implemented it.
I am also including .pbix file for your better understanding, please have a look into it:
If this post helps, then please give us ‘Kudos’ and consider Accept it as a solution to help the other members find it more quickly.
Thank you for using Microsoft Community Forum.
Hi sravan872,
without tables and/or a pbix, visuals prepared and indication of the desired result it is impossible to answer.
Furthermore, please clarify what you mean by "filters as security type in (abs,cmbs,mbs) and path in (asset backed)"
Best, FB
Thanks for the reply @FBergamaschi. Please find below
In this table, I need a new measure to calculate E/S port wt. The logic need is
My code
ES2 =
CALCULATE (
SUM ( 'PowerBI_Sample_Portfolio'[PORT WT] ),
FILTER (
'PowerBI_Sample_Portfolio',
NOT 'PowerBI_Sample_Portfolio'[SECURITY TYPE] IN { "ABS", "CMBS", "MBS" }
&& 'PowerBI_Sample_Portfolio'[PATH] <> "BACKED"
&&
NOT 'PowerBI_Sample_Portfolio'[FUND] IN { "B", "C", "D", "E" }
||
(
'PowerBI_Sample_Portfolio'[FUND] IN { "B", "C", "D", "E" }
&&
(
'PowerBI_Sample_Portfolio'[ASSET CLASS] = "SOV"
&& 'PowerBI_Sample_Portfolio'[SI FLAG] = 1
)
)
)
)
my code is a bit different than the one from v-tsaipranay, let us know if either of the two understood fully your request
Pls mark as kudos and solution in case my answer or v-tsaipranay one!
Best
FB
Hi sravan872,
thanks. Here is what is needed t be clarified/provided:
1 - please copy and past the table (I assume it is the fund table, is this correct?) not as a picture but in a format I can copy and past in Power BI. This should include all tables mentioned in your code (VW_CONSOLIDATED_PORTFOLIO_ESG_SNAPSHOT should be included as well)
2 - the column FUND[PATH_NTGI_ADDCHAR] mentioned in your code is not visible in the table, is that the FUND[PATH] column or another ?
3 - what do you mean in the bold part? "All these needs to be done in single measure and i need port wt."
Best, FB
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 |
---|---|
11 | |
11 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
12 | |
11 | |
11 | |
10 |