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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
sundayDriver
Microsoft Employee
Microsoft Employee

Measure not respecting a filter

Hello,

I have a date field in the same table as this measure:

EAScal = if(isblank(Divide(Divide(CALCULATE(COUNTA(vwFeedbackData[WouldIsAdminTrueFileTicket]),vwFeedbackData[WouldIsAdminTrueFileTicket] IN {"yes"}),CALCULATE(counta(vwFeedbackData[HelpfulRating]),vwFeedbackData[HelpfulRating] IN {3,2}))*CALCULATE(count(vwFeedbackData[HelpfulRating]),vwFeedbackData[HelpfulRating] IN {1}),CALCULATE(count(vwFeedbackData[HelpfulRating]),vwFeedbackData[HelpfulRating] IN {1,2,3}))),0,Divide((Divide(CALCULATE(COUNTA(vwFeedbackData[WouldIsAdminTrueFileTicket]),vwFeedbackData[WouldAdminFileTicket] IN {"yes"},vwFeedbackData[HelpfulRating] IN {3,2},vwFeedbackData[isadmin]="true"),CALCULATE(COUNT(vwFeedbackData[HelpfulRating]),vwFeedbackData[HelpfulRating] IN {3,2},vwFeedbackData[isadmin]="true"))*CALCULATE(count(vwFeedbackData[HelpfulRating]),vwFeedbackData[HelpfulRating] IN {1},vwFeedbackData[isadmin]="true")),CALCULATE(COUNt(vwFeedbackData[HelpfulRating]),vwFeedbackData[HelpfulRating] IN {1,2,3},vwFeedbackData[IsAdmin]="true")))

Filtering the date doesn't seem to change the measure. Could you help?

 
1 ACCEPTED SOLUTION

Hi @sundayDriver 

You are creating a column, please select Modeling->New Measure,

enter the following code

WouldIsAdminTrueFileTicket =
IF (
vwFeedbackData[IsAdmin] = "true",
IF (
vwFeedbackData[WouldAdminFileTicket] = "notset",
"Data not found",
vwFeedbackData[WouldAdminFileTicket]
),
"N/A"
)

 

Best Regards
Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

@sundayDriver 

Could you share some of the your sample data?

 

Regards

Sure @Anonymous . Here is a screenshot of some of the data. Here is also the code for the one calculated field used:

WouldIsAdminTrueFileTicket = if(vwFeedbackData[IsAdmin]="true",if(vwFeedbackData[WouldAdminFileTicket]="notset","Data not found",vwFeedbackData[WouldAdminFileTicket]),"N/A")

image.png

Hi @sundayDriver 

You are creating a column, please select Modeling->New Measure,

enter the following code

WouldIsAdminTrueFileTicket =
IF (
vwFeedbackData[IsAdmin] = "true",
IF (
vwFeedbackData[WouldAdminFileTicket] = "notset",
"Data not found",
vwFeedbackData[WouldAdminFileTicket]
),
"N/A"
)

 

Best Regards
Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.