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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
AllanBerces
Post Prodigy
Post Prodigy

Summarized Table with filter and two sum

Hi good day can any one help me correct my summarized table, it shows error when i used below.

 

SummarizedPMainData = FILTER(
SUMMARIZE('MAIN_DATA',
'MAIN_DATA'[FabJobcarding] ,
'MAIN_DATA'[Main Cat.] ,
"Fab_Estimate", CALCULATE(SUM('MAIN_DATA'[Estimated hours]),
"Fab_Remaining", CALCULATE(SUM(MAIN_DATA[Remaining hours])))),
[Main Cat.] = "Fab")
 
Thank you
1 ACCEPTED SOLUTION

Hi @AllanBerces Glad I could help!
Could you please mark the previous message as "Accepted as Solution" so the thread can be closed?

View solution in original post

3 REPLIES 3
AnkitaaMishra
Super User
Super User

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

@AnkitaaMishra thank you very much working as i need

Hi @AllanBerces Glad I could help!
Could you please mark the previous message as "Accepted as Solution" so the thread can be closed?

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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.

Top Solution Authors