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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Filtered Quick Measure is showing a different value than when I manually filter the column

Hello Power BI community,

 

I'm not too familiar with DAX code and creating measures, so I used the Power BI quick measure option to create a count and filter one of my columns. It was very easy to make and it developed a measure with this code:

Quick Measure = 
CALCULATE(
	COUNTA('Open_Assignments'[Open_Summary]),
	'Open_Assignments'[Open_Summary] IN {
		"Ad hoc",
		"Consultation",
		"Data Management",
		"Data Sharing Agreement",
		"Flag",
		"Map/Global Information System",
		"Program Evaluation",
		"Research",
		"Survey",
		"Workgroup"
	}
)

 However, when I manually filtered the column to double-check the quick measure's result, I found that the measure didn't align:

mreynaud_0-1694639558183.png

Does the syntax of the measure look off?

I appreciate your help.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

I ended up using a different filtering syntax that worked:

FilteredRequests = 
COUNTROWS(
    FILTER(
        'Open_Assignments',
        'Open_Assignments'[Request_Type] <> "Report"
    )
)

View solution in original post

1 REPLY 1
Anonymous
Not applicable

I ended up using a different filtering syntax that worked:

FilteredRequests = 
COUNTROWS(
    FILTER(
        'Open_Assignments',
        'Open_Assignments'[Request_Type] <> "Report"
    )
)

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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.