Forum Discussion
roncruiser
Post Patron
5 years agoConvert value from measure to a Constant Value
Hi, Not sure why this happens. I have a variable measure that gives me the expected value, but doesn't perform as expected when plugged into the main measure. When I hardcode the same variabl...
- 5 years ago
Hi roncruiser ,
Modify your variable as below:
Variable1 = SUMX ( FILTER ( ALL (maintable[position],maintable[intensity]), maintable[position] = 1 && maintable[intensity] = 0 ), maintable[Value] )Best Regards,
KellyDid I answer your question? Mark my post as a solution!
v-kelly-msft
Community Support
5 years agoHi roncruiser ,
Modify your variable as below:
Variable1 =
SUMX (
FILTER (
ALL (maintable[position],maintable[intensity]),
maintable[position] = 1
&& maintable[intensity] = 0
),
maintable[Value]
)
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
roncruiser
Post Patron
5 years agoThank You.