Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hello,
I have a table with a specific value (=total investment) on which I'd like to apply specific percentages (=fixed): 45% of the total investment, and then 10% of the total investment to use then those calculated values for other calculation. WHat formula should I use to create those 45% / 10% calculation?
thanks
Solved! Go to Solution.
Maybe something like:
Full Category A =
CALCULATE (
SUM ( Table[TotalInvestment] ),
KEEPFILTERS ( Category[Column] = "A" )
)
+ 0.45
* CALCULATE (
SUM ( Table[TotalInvestment] ),
KEEPFILTERS ( Category[Column] = "D" )
)
How will you add that the last 2 rows of the visuals?
Sounds great. What's your question?
Sorry went to quick on the message. I'd like to undertsand what formula to use to create the 45% / 10% calculation on a specific field. thanks
Thanks, I was so able to apply specific percentage to the values.
Now I am a bit stuck at the next step of my calculations - posting a picture to make it more clear (ultimately looking to calculate last line = full category A). I need to apply the percentages of each $ field per category ; and then do some sums. Can I include the filtering of category in the formulas?
Maybe something like:
Full Category A =
CALCULATE (
SUM ( Table[TotalInvestment] ),
KEEPFILTERS ( Category[Column] = "A" )
)
+ 0.45
* CALCULATE (
SUM ( Table[TotalInvestment] ),
KEEPFILTERS ( Category[Column] = "D" )
)
How will you add that the last 2 rows of the visuals?
thanks, that works.
indeed I dont know how to build the rows - is it possible?
Try something like this:
CustomTotalSales = SUMX( CustomBrands, CustomBrands[TotalSales] )
If you only ever have categories A to D then you can create a measure for each (plus the two measures for the last two lines).
The moment you have a dynamic list of categories you're basically out of luck.
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
19 | |
11 | |
10 | |
8 | |
8 |
User | Count |
---|---|
20 | |
13 | |
8 | |
7 | |
6 |