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!View all the Fabric Data Days sessions on demand. View schedule
Hi good day can any one help me correct my summarized table, it shows error when i used below.
Solved! Go to Solution.
Hi @AllanBerces Glad I could help!
Could you please mark the previous message as "Accepted as Solution" so the thread can be closed?
Hi @AllanBerces , can you try below DAX :
SummarizedPMainData =
VAR _FabData =
FILTER('MAIN_DATA', 'MAIN_DATA'[Main Cat.] = "Fab")
VAR _Summarize =
SUMMARIZE(
_FabData,
'MAIN_DATA'[FabJobcarding],
'MAIN_DATA'[Main Cat.],
"Fab_Estimate", SUM('MAIN_DATA'[Estimated hours]),
"Fab_Remaining", SUM('MAIN_DATA'[Remaining hours])
)
RETURN
_Summarize
Hi @AllanBerces Glad I could help!
Could you please mark the previous message as "Accepted as Solution" so the thread can be closed?
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!