Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hello,
I have 2 columns in my table and one measure
1. Portfolio Code - Column
2. Fund Strat% - Measure
3. Run Date - Column
I want to sum the values in "FundStrat%" (measure) by portfolio code and run date (columns).
For example, if there are 20 rows in my table of "FundStrat%" values for portfolio code 11111 on 5/27/2025, I want the formula to sum all 20 rows to give me the total value.
Solved! Go to Solution.
Hello,
Thank you for your help. I figured out the formula to sum a measure.
Hello,
Thank you for your help. I figured out the formula to sum a measure.
Hi @gmasta1129 ,
Thank you for reaching out to Microsoft Fabric Community.
Thank you @mdaatifraza5556 for the prompt response.
In order to sum the values in "FundStrat%" (measure) by portfolio code and run date (columns):
You can try using the DAX implemented in the attached PBIX file with sample data.
Created a measure called [Total Fund Strat% by Portfolio and Date].
If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it!
Thank you.
Hello @v-venuppu ,
Thank you for the response. I cannot open the file. Can you please copy and paste the formula into the message box?
Hi @gmasta1129
As per my understanding of your requirement.
could you please try the below dax?
Total Fund Strat% by Portfolio and Date =
CALCULATE(
[Fund Strat%],
ALLEXCEPT(
'YourTable',
'YourTable'[Portfolio Code],
'YourTable'[Run Date]
)
)
If this answers your questions, kindly accept it as a solution and give kudos.
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 |
---|---|
17 | |
9 | |
8 | |
7 | |
7 |