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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
jatneerjat
Helper V
Helper V

Does table generated from summarize gets updated automatically

Hi,

 

I have created a table using summarize() function.so whenever my dataset updated does the table generated through summarize() also gets updated.

 

Thanks

1 ACCEPTED SOLUTION

Hi @jatneerjat,

 

I don't think so. It could be done easily like below. One table is enough. If you want more details, maybe you can provide a sample data.

summarizeTable =
SUMMARIZE (
    'table',
    'table'[column ID],
    "value1", SUM ( 'table'[column1] ),
    "value2", SUM ( 'table'[column2] )
)

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @jatneerjat,

 

Yes, it will update automatically. Please give it a try.

 

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks @v-jiascu-msft.It works.

Do I have to create 2 summarized table if i want to group by 2 different columns by a column ID?

 

Thanks

Hi @jatneerjat,

 

I don't think so. It could be done easily like below. One table is enough. If you want more details, maybe you can provide a sample data.

summarizeTable =
SUMMARIZE (
    'table',
    'table'[column ID],
    "value1", SUM ( 'table'[column1] ),
    "value2", SUM ( 'table'[column2] )
)

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks alot @v-jiascu-msft.

its simple.

 

Thanks,

Jat

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Top Solution Authors