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
JDES2025
New Member

DAX SUMMARIZE Function Table Name Error

I am trying to write a SUMMARIZE function, I know I need to have the table name next,

JDES2025_0-1758650575229.png

 

Which I know is “Booking_History__c” from the Transform data pane...

 

= Source{[Name="Booking_History__c"]}[Data]

 

But when I type in the table name, I keep getting the same error,

JDES2025_2-1758650575232.png

What am I doing wrong?

1 ACCEPTED SOLUTION
MasonMA
Community Champion
Community Champion

 

Hi,

In a visual calculation, you don’t directly reference model tables the same way you do in a standard DAX expression.

That’s why when type SUMMARIZE() you get the table name error.

 

If you want to use SUMMARIZE, please create a calculated table or measure in the model, not in a visual calculation.

For example: 
NewTable =
SUMMARIZE (
    'Booking_History__c',
    'Booking_History__c'[BookingID],
    'Booking_History__c'[CustomerID],
    "Total Sales", SUM ( 'Booking_History__c'[SalesAmount] )
)

 

View solution in original post

5 REPLIES 5
v-prasare
Community Support
Community Support

May I ask if you have resolved this issue? If so, Can you please share the resolution steps here. This will be helpful for other community members who have similar problems to solve it faster.
If we don’t hear back, we’ll go ahead and close this thread. For any further discussions or questions, please start a new thread in the Microsoft Fabric Community Forum we’ll be happy to assist.
Thank you for being part of the Microsoft Fabric Community.

v-prasare
Community Support
Community Support

Hi @JDES2025,

We would like to confirm if our community members answer resolves your query or if you need further help. If you still have any questions or need more support, please feel free to let us know. We are happy to help you.

 

 

 

Thank you for your patience and look forward to hearing from you.
Best Regards,
Prashanth Are
MS Fabric community support

v-prasare
Community Support
Community Support

Hi @JDES2025,

We would like to confirm if our community members answer resolves your query or if you need further help. If you still have any questions or need more support, please feel free to let us know. We are happy to help you.


@Royel & @MasonMA ,Thanks for your prompt response

 

 

Thank you for your patience and look forward to hearing from you.
Best Regards,
Prashanth Are
MS Fabric community support

Royel
Solution Sage
Solution Sage

Hi @JDES2025 visual calculation dose not allow summarize() you need to create a table or measure. If table format works you can try the proposed solution from @MasonMA or if you like to do it using measure try this 

Summarized_Measure = 
SUMX(
    SUMMARIZE(
        'Booking_History__c',
        'Booking_History__c'[BookingID],
        'Booking_History__c'[CustomerID]
    ),
    SUM ( 'Booking_History__c'[SalesAmount] )
)

You can learn more about summarize() function in here 

 

Thanks 

MasonMA
Community Champion
Community Champion

 

Hi,

In a visual calculation, you don’t directly reference model tables the same way you do in a standard DAX expression.

That’s why when type SUMMARIZE() you get the table name error.

 

If you want to use SUMMARIZE, please create a calculated table or measure in the model, not in a visual calculation.

For example: 
NewTable =
SUMMARIZE (
    'Booking_History__c',
    'Booking_History__c'[BookingID],
    'Booking_History__c'[CustomerID],
    "Total Sales", SUM ( 'Booking_History__c'[SalesAmount] )
)

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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