Join 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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
I would like to create a calculated column that returns a total row count per customer, as below.
To do this with SQL, one approach would be to use a window function like:
COUNT(*) OVER (PARTITION BY CUSTOMER ORDER BY NULL)
Could someone please demonstrate how to achieve the same result using DAX?
Thanks!
Pbix
Solved! Go to Solution.
@Anonymous
Check
Column =
COUNTAX (
FILTER ( 'Table', EARLIER ( 'Table'[Customer No.] ) = 'Table'[Customer No.] ),
'Table'[Product Purchased]
)
A good site for your reference.
@Anonymous
Check
Column =
COUNTAX (
FILTER ( 'Table', EARLIER ( 'Table'[Customer No.] ) = 'Table'[Customer No.] ),
'Table'[Product Purchased]
)
A good site for your reference.
What if we have unsorted list of Customer No.? They this formula shouldn't work, yes?
Lovely, thanks very much.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 65 | |
| 59 | |
| 45 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 109 | |
| 108 | |
| 39 | |
| 30 | |
| 26 |