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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all,
In my measure, i want to exclude from the calculation the column "Line C" , but I don´t know wherte to put the filter TableLines[Line] <> "Line C". Any ideas?
Thank you very much for your help
YTD OEE =
CALCULATE (
DIVIDE (
SUMX (
SUMMARIZE (
TableLines;
TableLines[Line];
"AA"; [Total Units] / ( [Opening Time H] * [Speed units hour] )
);
[AA] * [Opening Time H]
);
[Opening Time H];
0
);
DATESYTD ( Calendar[Date]; "30/06" );
FILTER (
ALL ( 'Calendar' );
'Calendar'[Date] <= MAX ( 'Calendar'[Date] )
&& 'Calendar'[Fiscal Year] = MAX ( 'Calendar'[Fiscal Year] )
)
)
Solved! Go to Solution.
Hi @Anonymous ,
You can add it in the "SUMMARIZE" part.
SUMMARIZE (
FILTER(TableLines;TableLines[Line] <> "Line C");
TableLines[Line];
"AA"; [Total Units] / ( [Opening Time H] * [Speed units hour] )
)
Hi @Anonymous ,
You can add it in the "SUMMARIZE" part.
SUMMARIZE (
FILTER(TableLines;TableLines[Line] <> "Line C");
TableLines[Line];
"AA"; [Total Units] / ( [Opening Time H] * [Speed units hour] )
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!