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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Power BI Subquery: Returning values where SUM greater than 1

I have a dataset which looks like the following:

 

Capture1.PNG

 

I want to write a query that returns sales_week, product, username and the SUM of qty only where the SUM is greater than 1.

 

I would write this in SQL using a subquery as follows:

 

SELECT tbl1.* FROM
  (SELECT sales_week, username, product, SUM(qty) AS 'total_qty'
  FROM sales_data
  GROUP BY sales_week, username, product) AS tbl1
WHERE tbl1.total_qty > 1

Which would result in the following:

 

Capture2.PNG

 

Can someone please help me to generate the same result in Power BI?

 

 

 

1 ACCEPTED SOLUTION
evandrocunico
Resolver III
Resolver III

Hi @Anonymous 

 

try this: 

modeling -> create a newtable

New_table =
FILTER(
SUMMARIZE( Sales_data, 'Sales_data'[sales_week], 'Sales_data'[username], 'Sales_data'[product], "Total qty", sum('Sales_data'[qty])),
[total_qty] > 1)

 

 

View solution in original post

2 REPLIES 2
evandrocunico
Resolver III
Resolver III

Hi @Anonymous 

 

try this: 

modeling -> create a newtable

New_table =
FILTER(
SUMMARIZE( Sales_data, 'Sales_data'[sales_week], 'Sales_data'[username], 'Sales_data'[product], "Total qty", sum('Sales_data'[qty])),
[total_qty] > 1)

 

 

Anonymous
Not applicable

Thank you Smiley Very Happy

 

Your provided solution worked like a charm!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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