Forum Discussion
jamuka
Helper IV
4 years agoFilter a visual based on selected measure from another visual
I have a table which shows product availability and their forecasts. I'd like to show ratio of "out of stock forecast amount" versus "total forecast amount". When user select a row in this matrix, ...
- 4 years ago
jamuka , we can not pass measure values across
But selection can reduce the value
You can use like
measure =
var _max = calculate([M1], allselected() )
return
if([M1] <_max, [M2], blank())
amitchandak
Super User
4 years agojamuka , we can not pass measure values across
But selection can reduce the value
You can use like
measure =
var _max = calculate([M1], allselected() )
return
if([M1] <_max, [M2], blank())
jamuka
Helper IV
4 years ago