Forum Discussion
Operate with 2 cards
- 8 years ago
Hey,
try this
the measure = DIVIDE( CALCULATE( ,COUNTROWS('yourtable') ,'yourtable'[colorcolumn] = "red" ) ,CALCULATE( ,COUNTROWS('yourtable') ,'yourtable'[colorcolumn] = "blue" ) )Regards
Tom
Hey,
unfortunately you cant't reference values from a visual (your card(s)) to calculate a new value.
For this reason you have create a measure that rebuilds the filter from the separate card visuals, something like this
3rd measure =
DIVIDE(
CALCULATE(
SUM('table'[column])
,'table'[filtercolumn2] = "this" &&
,,'table'[filtercolumn1] IN {"red", "blue"}
)
,CALCULATE(
SUM('table'[column])
,'table'[filtercolumn2] = "this"
)
)Hope this gets you started
Regards
Tom
- chrisgehm8 years agoHelper III
Hi TomMartens thanks for the answer.
Actually what I need is to divide the COUNT of 2 things.
Example:I've got 100 values with color red. It does not matter what is the value. It could be A, B, C, anyone.
And I've got 75 values with clor blue and yellow. Same conditions, it does not matter the value, what I need is to know how many there are.
After that, I need to make the division of that 2 COUNTS.
Is it possible?
Sorry for my bad English.
Kind regards.- TomMartens8 years agoSuper User
Hey,
try this
the measure = DIVIDE( CALCULATE( ,COUNTROWS('yourtable') ,'yourtable'[colorcolumn] = "red" ) ,CALCULATE( ,COUNTROWS('yourtable') ,'yourtable'[colorcolumn] = "blue" ) )Regards
Tom
- chrisgehm8 years agoHelper III
Thanks!