March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I have following table:
Costs | Ist_Value |
Revenue | 2345 |
Material Costs | 117 |
Salary | 189 |
Rent | 378 |
I want to calculate ig. % of Material Cost based on Revenue
= ist_value / Revenue
My result should be following:
Costs | Ist_Value | %Value |
Revenue | 2345 | 100% |
Material Costs | 117 | 4,90% |
Salary | 189 | 8,06% |
Rent | 378 | 16,12% |
I try to extract the value for Cost=Revenue and use it for further calculation
Costs | Ist_Value | Revenue | % Value |
Revenue | 2345 | 2345 | 100% |
Material Costs | 117 | ||
Salary | 189 | ||
Rent | 378 |
What am I doing wrong?
Solved! Go to Solution.
Hi, @Anonymous
In that case, the situation has been changed to me.
So, I need to write the measure again from the beginning.
Please try the below and let me know whether it works.
Revenue =
CALCULATE (
SUMX ( 'Table', 'Table'[Ist_Value] ),
FILTER ( ALL ( 'Table' [Cost]), 'Table'[Costs] = "Revenue" )
)
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: https://www.linkedin.com/in/jihwankim1975/
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi, @Anonymous
I think it is related to your Revenue measure.
Please try to replace it to the below.
Revenue =
CALCULATE (
SUMX ( 'Table', 'Table'[Ist_Value] ),
FILTER ( ALL ( 'Table' ), 'Table'[Costs] = "Revenue" )
)
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: https://www.linkedin.com/in/jihwankim1975/
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi Jihwan Kim,
thanks for your reply.
It's almost correct.
Unfortunatly I wasn't 100% clear.
My original Table has also additionally a date inside:
(arggh I can't past Table)
Date Costs Ist_value
Jan Revenue 2345
Jan Material C 238
Feb Revenue 5689
Feb Material C 245
How can I still consider the date within Revenue calculation?
Right now with your approach it's taking total Sum of Revenue over whole table but it should be still grouped by date.
(sorry for not being accurate enough at the begining)
Hi, @Anonymous
In that case, the situation has been changed to me.
So, I need to write the measure again from the beginning.
Please try the below and let me know whether it works.
Revenue =
CALCULATE (
SUMX ( 'Table', 'Table'[Ist_Value] ),
FILTER ( ALL ( 'Table' [Cost]), 'Table'[Costs] = "Revenue" )
)
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: https://www.linkedin.com/in/jihwankim1975/
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
15 | |
12 | |
9 | |
8 |
User | Count |
---|---|
41 | |
32 | |
29 | |
12 | |
12 |