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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
panatb
New Member

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
Super User
Super User

@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!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Super User
Super User

@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!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.