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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Syndicate_Admin
Administrator
Administrator

Number of customers listed with DAX

Hello good morning,

I have a customer table where I have created a custom column which identifies customers according to their sale, if 90 days ago it is customer 1, more than 90 customer 2 and the rest is customer 3

First I calculate the days since the last purchase with

RangoDias = DATEDIFF([FechaUltimaCompraCliente],NOW(),DAY)

Then I identify the customer

Tipo Cliente = 
    SWITCH(
        TRUE(),
        AND(Clientes_sql[RangoDias]>0,Clientes_sql[RangoDias]<=90),1,
        Clientes_sql[RangoDias]>90,2,
        3
        )

Now what I want to do is count the number of rows (customers) of a particular type.

For example 2 customers, I have a matrix where they appear, now I would like the data of how many (in number) there are in that list.

apenaranda_0-1700548203702.png

Thank you.

1 REPLY 1
KNP
Super User
Super User

Unless I'm misunderstanding, can you not just drop in a measure.

DISTINCTCOUNT('Customer'[CustomerName])

 

Put that in the matrix.

 

Have I solved your problem?
Please click Accept as Solution so I don't keep coming back to this post, oh yeah, others may find it useful also ;).
xOIEmaj

If you found this post helpful, please give Kudos.
It gives me a sense of instant gratification and, if you give me Kudos enough times, magical unicorns will appear on your screen.
If you find my signature vaguely amusing, please give Kudos.
image
fabric-SUbadge
Proud to be a Super User!

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors