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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
MorganBauwens
New Member

Count multi-callers in multiple services

Hello all,

 

I'd love to get some help with DAX.

 

Here is the context : 

We have a hotline with multiple call-centers. All the events are recorded in a PowerBI Dataset. Here are the main columns that I focus on :

Table : ServiceTask

FieldMeaningExample
InitialSipFromCustomer's phone number+330636656565@voiipdomain.be
InitialSipToCall-center choosed by customercall_center1@ourdomain.be
StartedDateIDDate (integer)20221231
TaskResultIDResult of the call (handled, not handled...)5

 

My goal is to create a measure with DAX that will count, for each day, the number of customers that called us more than one time and choosed at least two different contact centers ("shoppers"), and having a task result of 1 or 5.

So : 

Customer 1 called us twice, but chosed the same contact center in both occasion => do not count

Customer 2 called us twice, chosed call-center 1 the first time, and call-center 4 the second time => count

 

My final goal is to create a visual (table) a bit like this : 

StartedDateIDCount InitialSipFromCount Shoppers
2023010125641201
2023010228451540
2023010335021745

 

Being connected live to the dataset, I am not able to create or modify any column or field.

Is there anything I can do ?

 

Thanks a lot for your time and help ! 🙂 

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Try

Cust called twice =
VAR SummaryTable =
    ADDCOLUMNS (
        VALUES ( 'Service Task'[Initial SIP from] ),
        "@num call centres", CALCULATE ( DISTINCTCOUNT ( 'Service Task'[Initial SIP to] ) )
    )
VAR Result =
    COUNTROWS ( FILTER ( SummaryTable, [@num call centres] >= 2 ) )
RETURN
    Result

View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

Try

Cust called twice =
VAR SummaryTable =
    ADDCOLUMNS (
        VALUES ( 'Service Task'[Initial SIP from] ),
        "@num call centres", CALCULATE ( DISTINCTCOUNT ( 'Service Task'[Initial SIP to] ) )
    )
VAR Result =
    COUNTROWS ( FILTER ( SummaryTable, [@num call centres] >= 2 ) )
RETURN
    Result

That is exactly what I needed, @johnt75 !
Thanks a lot for your help !

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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