Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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?
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" }
)
)
Solved! Go to Solution.
Hi Michael,
Please try this out,
Hi Michael,
Please try this out,