Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Hi everyone,
I have been searching for a solution for several days now but still couldn't find an answer to my issue. I hope you guys can help?
In my data source I have a list of assortment checks for thousands of stores over several years. Here is a simplified example of a table called "Detailed Assortment":
I am trying to find the proper DAX function that will answer the following questions:
1/ How many products did the Customer A have in store at the end of 2017 ? The answer here would be 2
I tried to add a new column with the following DAX function:
Assortment last visit 2017 = CALCULATE(COUNT('Detailed Assortment'[Visit ID]),FILTER(MAXA('Detailed Assortment','Detailed Assortment'[Date])&&'Detailed Assortment'[Date].Year]=2017
But I got the total number of products that were in the stores in visit 1 and 2 (Total=5) when I should get only 2
2/ I would like to get a table with the summary of the visits displaying the following information:
I hope this is clear. Thank you in advance for your time
Solved! Go to Solution.
You should be able to create a measure like:
Measure = VAR __maxDate = MAX([Date]) VAR __table = FILTER('Table',[Date] = __maxDate && [Product in store] = TRUE()) RETURN COUNTX(__table,[Product])
You should be able to create a measure like:
Measure = VAR __maxDate = MAX([Date]) VAR __table = FILTER('Table',[Date] = __maxDate && [Product in store] = TRUE()) RETURN COUNTX(__table,[Product])
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
82 | |
42 | |
31 | |
27 | |
27 |