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
panatb
Regular Visitor

Summarize with Sumx

Hi, I am a new to Dax and struggling to achieve the below. Appreciate any help and advice:

I have a table with duplicates. I want to create a virtual table with Summarize with Sumx function as below

 

Virtual_Table = SUMMARIZE(SALES_TABLE,SALES_TABLE[ITEM],"SALES_AMT",SUMX(SALES_TABLE,SALES_TABLE[UNIT PRICE]*SALES_TABLE[QTY]))

 

Sales_Table (already in Power BI):

panatb_0-1725550665223.png

 

Desired Result:

panatb_1-1725551287367.png

 

However, I am getting this output:

panatb_2-1725551442211.png

 

 

 

1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

@panatb Use this instead:

Virtual_Table = 
  ADDCOLUMNS(
    SELECTCOLUMNS( SALES_TABLE, "ITEM", [ITEM] ),
    "SALES_AMT", [UNIT PRICE] * [QTY]
  )


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Community Champion
Community Champion

@panatb Use this instead:

Virtual_Table = 
  ADDCOLUMNS(
    SELECTCOLUMNS( SALES_TABLE, "ITEM", [ITEM] ),
    "SALES_AMT", [UNIT PRICE] * [QTY]
  )


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

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.