Forum Discussion
skorpionaa
6 years agoHelper I
Ignore Filter on Visual
I'm trying to ignore master Filter on this measure can anybody help me out I'm not talking about edit Interaction. I'm talking about the filter on the page. How can I ignore it? Here is my measure:...
- 6 years ago
hey, try this
CALCULATE (
COUNT ( 'ROUND 2 Survey Productivity Data'[row.__created.1] ),
'ROUND 2 Survey Productivity Data'[row.username] = "alhumaydani"
)
/ CALCULATE (
COUNT ( 'ROUND 2 Survey Productivity Data'[row.username] ),
ALL ( 'ROUND 2 Survey Productivity Data'[row.username] )
)
ranbeermakin
6 years agoResolver III
Hi there!
You are forgetting ALL or ALLSELECTED in the denominator.
And use DIVIDE function pls.
Ranbeer
skorpionaa
6 years agoHelper I
Im new here will you give me measure .. bcz i dont know where i ned to add
- ranbeermakin6 years agoResolver III
hey, try this
CALCULATE (
COUNT ( 'ROUND 2 Survey Productivity Data'[row.__created.1] ),
'ROUND 2 Survey Productivity Data'[row.username] = "alhumaydani"
)
/ CALCULATE (
COUNT ( 'ROUND 2 Survey Productivity Data'[row.username] ),
ALL ( 'ROUND 2 Survey Productivity Data'[row.username] )
)