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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Hettic
Frequent Visitor

Losing filter context via group by/summarize

I work with different data than sales data, but for everyone to be able to understand I used a contoso data set for it.

What I would like to achieve is to count the number of unique customers that bought more than one product.

 

 

CustomersMoreProducts =

VAR MaxDate = MAX('Date'[Date])
VAR CustomersMoreProducts =
--Unique customers with more than one product in period.
CALCULATETABLE(
FILTER(SUMMARIZE(Sales,
Customer[CustomerKey],
"#Products", DISTINCTCOUNT(Sales[ProductKey])
),
[#Products] > 1),
DATESBETWEEN ( 'Date'[Date], DATE(2008,1,1), MaxDate )
)

RETURN
COUNTROWS(CustomersMoreProducts)

 


However, I would like to analyse it by last product.
So imagine a table visual with productname (=last product) and the measures(=customers who bought more than one product). 

I know that in the filter context there is only one (counted) product so therefore the measure is returning BLANK.

Could someone point me in the right direction.

I also have another code sample in which I first calculate a table variable with the following output:

CustomerKey, LastBoughtProduct, LastBoughtDate.
Then I tried to use TREAT AS to assign field LastBoughtProduct to Product[ProductKey], however not the result I expected.

 

 
2 REPLIES 2
amitchandak
Super User
Super User

@Hettic , Try like

 

CustomersMoreProducts =

VAR MaxDate = MAX('Date'[Date])
return
COUNTROWS(
FILTER(SUMMARIZE(Sales,
Customer[CustomerKey],
"#Products", calculate(DISTINCTCOUNT(Sales[ProductKey]),DATESBETWEEN ( 'Date'[Date], DATE(2008,1,1), MaxDate ))
),
[#Products] > 1),

)

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Tried it, but also in this case the grand total is calculated however the context at product name is lost, resulting in a blank value for each product name.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.