Forum Discussion
JustaRookie012
2 years agoFrequent Visitor
Question regarding fixed value
Dear community, I have the following simplified Table Company Project Period Value1 Value2 A A 13 10 20 A A 13 10 20 A B 13 20 A B 13 20 A C 13 10 2...
- 2 years ago
JustaRookie012, here is my suggested solution.
Change the DAX of your Result measure to this:
Result = CALCULATE( DIVIDE(SUM(YourTable[Value1]), SUM(YourTable[Value2])), ALL(YourTable) )This gives me the following output:
EylesIT
2 years agoResolver II
JustaRookie012, here is my suggested solution.
Change the DAX of your Result measure to this:
Result =
CALCULATE(
DIVIDE(SUM(YourTable[Value1]), SUM(YourTable[Value2])),
ALL(YourTable)
)
This gives me the following output: