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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply

Error in DAX summary table with filters

Hi everyone, I'm hoping this is relatively simple - I'm getting the error below when creating a summary table in DAX - might someone know what I'm doing wrong?

MichaelHutchens_0-1699382035230.png

Here's my code:

 

Table3 = 
    SUMMARIZE (
    'Employee',
	'Employee'[Employee Name],
	'Employee'[Email Address],
	'Employee'[Employee ID],
	'Employee'[Employee Status],
	'Employee'[Current Employee Email Record]
    )
    FILTER (
        'Employee',
        'Employee'[Current Employee Email Record] = "Y"
		&& NOT ( 'Employee'[Employee Status] ) IN { "Withdrawn" }
    )
)

 

1 ACCEPTED SOLUTION
syasmin25
Helper V
Helper V

Hi Michael, 

Please try this out, 

 SUMMARIZECOLUMNS(

 

    'Employee'[Employee Name],
    'Employee'[Email Address],
    'Employee'[Employee ID],
    'Employee'[Employee Status],
    'Employee'[Current Employee Email Record],
    FILTER (
        'Employee',
        'Employee'[Current Employee Email Record] = "Y"
        && 'Employee'[Employee Status] <> "Withdrawn" 
    )
)

View solution in original post

2 REPLIES 2
syasmin25
Helper V
Helper V

Hi Michael, 

Please try this out, 

 SUMMARIZECOLUMNS(

 

    'Employee'[Employee Name],
    'Employee'[Email Address],
    'Employee'[Employee ID],
    'Employee'[Employee Status],
    'Employee'[Current Employee Email Record],
    FILTER (
        'Employee',
        'Employee'[Current Employee Email Record] = "Y"
        && 'Employee'[Employee Status] <> "Withdrawn" 
    )
)

Thank you, that's perfect!

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors
Top Kudoed Authors