Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
skorpionaa
Helper I
Helper 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:

 

 

alhumaydani% =
var _sales=

CALCULATE(COUNT('ROUND 2 Survey Productivity Data'[row.__created.1]),
'ROUND 2 Survey Productivity Data'[row.username] = "alhumaydani")/COUNT('ROUND 2 Survey Productivity Data'[row.username])

return
IF(ISBLANK(_sales),0,_sales)


This should be 24% but it's giving me 100%.
1 ACCEPTED SOLUTION

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] )
)

View solution in original post

3 REPLIES 3
ranbeermakin
Resolver III
Resolver III

Hi there!

 

You are forgetting ALL or ALLSELECTED in the denominator.

 

And use DIVIDE function pls.

 

Ranbeer

Im new here will you give me measure .. bcz i dont know where i ned to add

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] )
)

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.