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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Count Customers with Number of Contact Points greater than Target Number of Contact Points

I have a list of Customer IDs, each has multiple contact points (Contact IDs). We have our customers grouped into various segments, each with a target for the number of contact points.

 

Customer Contacts in the segment ABC

Customer IDContact ID
1100
1103
1109
2123
2138
3150

 

That would be grouped into the following. I need the grouping to be affected by the selection of the segment slicer.

 

Customer IDContact Count
13
22
31

 

When a slicer is filtered to segment ABC, which has the target contact count of 2, I want to count the customers that have above that target and put it in a card. The result should be 1.

 

I've tried using different table structures and calculations. I'm quite flexible with how the table structures can be set up and I'm open to trying different calculations as long as they can be affected by a slicer.

 

Thanks!

 

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

Should be something along the lines of:

 

Measure =
  VAR __Target = MAX('TargetTable'[Target])
  VAR __Table = 
    SUMMARIZE(
      'Table',
      [Customer ID],
      "Count",COUNTROWS('Table')
    )
RETURN
  COUNTROWS(FILTER(__Table,[Count]>=__Target))

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Super User
Super User

Should be something along the lines of:

 

Measure =
  VAR __Target = MAX('TargetTable'[Target])
  VAR __Table = 
    SUMMARIZE(
      'Table',
      [Customer ID],
      "Count",COUNTROWS('Table')
    )
RETURN
  COUNTROWS(FILTER(__Table,[Count]>=__Target))

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.