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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

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