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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Syndicate_Admin
Administrator
Administrator

Problem with measurement and filters

Good afternoon

I have a problem with page filters and measurements.

If in the filter I put "All", it considers me the total of the total, that is, 100%:

mariases94_0-1646066812367.png

But when I select the user "Administrator", it tells me that there are fewer Opportunities, but the percentage is still at 100%:

mariases94_1-1646066882296.png

Instead of 100%, the percentage of the total would have to come out, that is, the percentage that the 86 suppose on the 884 ...

The formula for the percentage measure is this:

RATIO Opp Ganadas =
WHERE _Total = CALCULATE ([COUNT Up Ganadas], ALL(opportunity[opportunityid]))
RETURN
DIVIDE([COUNT Up Ganadas], _Total)
Can you help me, please?
Thank you very much in advance and greetings!

1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

It looks like there are maybe other filters that are flowing into your meaure that is limiting it.  Try it like this.

RATIO Opp Ganadas =
VAR _Total = CALCULATE ([COUNT Up Ganadas], ALL(opportunity))
RETURN
DIVIDE([COUNT Up Ganadas], _Total)

View solution in original post

1 REPLY 1
jdbuchanan71
Super User
Super User

It looks like there are maybe other filters that are flowing into your meaure that is limiting it.  Try it like this.

RATIO Opp Ganadas =
VAR _Total = CALCULATE ([COUNT Up Ganadas], ALL(opportunity))
RETURN
DIVIDE([COUNT Up Ganadas], _Total)

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors