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
Vladas
Frequent Visitor

Summarizing data from two different table

Hi,
 
I have two tabels:
 
'Items' with [ItemId] and 'Sale' with [ItemId] [SalesQty] and [SalesDate].  Relationship is created via [ItemId]
 
 I would like to create one summarized tabel with columns:   [ItemId] , SUM(SalesQty), LastDate(SalesDate).
 
How I can do that? 
 
Thanks
1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Vladas,

 

New a calculated table with below formula:

Table =
SUMMARIZE (
    Items,
    Items[ItemID],
    "Total SalesQty", SUM ( Sale[SalesQty] ),
    "LatestDate", LASTDATE ( Sale[SalesDate] )
)

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
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

2 REPLIES 2
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Vladas,

 

New a calculated table with below formula:

Table =
SUMMARIZE (
    Items,
    Items[ItemID],
    "Total SalesQty", SUM ( Sale[SalesQty] ),
    "LatestDate", LASTDATE ( Sale[SalesDate] )
)

Best regards,

Yuliana Gu

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

Thanks for help! I had a problem with relationships.

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.