This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Seems easy enough on paper 🙂 This calculation seems easy but i'm missing something in approach i suspect.
Need to count the # of customers with total sales last month > total last month last year sales and be dynamic on date (month) selected in slicer.
The source is our sales fact table that is joined to date table.
This is how i approached the problem but then unable to count the number of customers that = 1
Should i create a sperate table with SUMMARIZE columns? I've tried but can't seem to work out the logic if that is the correct approach. And if yes, how should i aggregate the time dimension in relation to sales in column format?
If DAX solution then what am i missing??
Thoughts and suggestions appreciated!!
Solved! Go to Solution.
thanks for the reply -
although not the full solution your SUMX pushed me in the right direction with row context via iterations.
variables not necessary
Used SUMMARIZE in combination with SUMX. here is the final solution.
Hi @dapronr ,
You can mark the correct answer as a mark for future reference.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@dapronr You need to provide row context of customer table and you can SUM the result to count the 1s:
RETURN
SUMX(CustomerTable, IF(_lastmonthsales > _lastmonthlastyearsales, 1, 0) )
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
thanks for the reply -
although not the full solution your SUMX pushed me in the right direction with row context via iterations.
variables not necessary
Used SUMMARIZE in combination with SUMX. here is the final solution.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 28 | |
| 28 | |
| 20 | |
| 18 |
| User | Count |
|---|---|
| 66 | |
| 36 | |
| 33 | |
| 26 | |
| 24 |