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
beckyb822
New Member

DAX count days that sales made calls

I need to determine how many business days a sales person worked in a given month.  Basically need to count the days where they made more than one call.  Any ideas on what that DAX might look like?  

1 ACCEPTED SOLUTION

Hi @beckyb822 ,

 

The possible solution is use DISTINCTCOUNT function.

Solution1 = DISTINCTCOUNT('Table'[Call Date])

vstephenmsft_0-1689561024406.png

Or use

Solution2 = CALCULATE(DISTINCTCOUNT('Table'[Call Date]),FILTER(ALLSELECTED('Table'),[EmpID]=MAX('Table'[EmpID])))

 

vstephenmsft_1-1689561593493.png

                                                                                                                                                         

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.           

View solution in original post

4 REPLIES 4
ABC4
Frequent Visitor

You could create a table like this:
SUMMARIZCOLUMNS("EmpID" [EmpID], "Calls", "Year", YEAR([call Date], "Month", MONTH([call date]), COUNT(call Date) 

beckyb822
New Member

My data is call records, so I first need to group/filter by rep.  Then count how many per day.  Then count how many days in a month the count was > 0.  

 

EmpIDCall NumberCall Date
11234562/1/2023
1898212/2/2023
2368922/10/2023
3639873/1/2023
3456233/20/2023

Hi @beckyb822 ,

 

The possible solution is use DISTINCTCOUNT function.

Solution1 = DISTINCTCOUNT('Table'[Call Date])

vstephenmsft_0-1689561024406.png

Or use

Solution2 = CALCULATE(DISTINCTCOUNT('Table'[Call Date]),FILTER(ALLSELECTED('Table'),[EmpID]=MAX('Table'[EmpID])))

 

vstephenmsft_1-1689561593493.png

                                                                                                                                                         

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.           

ABC4
Frequent Visitor

Can you provide an example small table (anonymised data).

 

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.

Top Solution Authors