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
TJCappy
Frequent Visitor

Total number of daily sales per emplyee role

Hi All,

 

So I have a scenarion that requires me to calculate the total number of "distinct transactions" per employee role.

 

eg.  I have the following role titles

         1. floor sales rep

         2. snr floor sales rep

         3. mobile sales rep

         4. snr mobile sales rep

         5. online/tele-sales rep

 

I would like to count the total number of  transactions that each role does daily.

 

I have used the following formula

 

Total Trxns per Employee Title =

Calculate(DISTINCTCOUNT( 'FACT_DAILY_SALES'[SYS_TRXN_ID]), filter('FACT_EmployeeTable',FACT_EmployeeTable[EmployeeTitle]))

 

There doesn't seem to be an error in the formula but when i add the measure to the visual I get the following error

 

<<Calculation error in measure 'Sales_Measures'[Total Trxns per Employee Title: Cannot convert 'floor sales rep" of type text to type True/False.>>

 

Would anyone here be able to assist me with a solution.

 

Thank you

1 ACCEPTED SOLUTION
serpiva64
Super User
Super User

Hi,

you can try a calculated column

Total Trxns per Employee Title  =
var currEmployeeTitle = FACT_EmployeeTable[EmployeeTitle]
var result =
Calculate(DISTINCTCOUNT( FACT_EmployeeTable[EmployeeTitle],FACT_EmployeeTable[EmployeeTitle]=currEmployeeTitle))
return
result
 

If this post is useful to help you to solve your issue consider giving the post a thumbs up 

 and accepting it as a solution !

View solution in original post

3 REPLIES 3
TJCappy
Frequent Visitor

Thanks for the suggestion,  however when I attempt it,  the formular requires that the statement

var currEmployeeTitle = FACT_EmployeeTable[EmployeeTitle]  use a measure in place of FACT_EmployeeTable[EmployeeTitle]  so unfotunately it did not work, unless I am missing something.

Hi,

are you sure of having choosen a calculated column and not a measure?

serpiva64
Super User
Super User

Hi,

you can try a calculated column

Total Trxns per Employee Title  =
var currEmployeeTitle = FACT_EmployeeTable[EmployeeTitle]
var result =
Calculate(DISTINCTCOUNT( FACT_EmployeeTable[EmployeeTitle],FACT_EmployeeTable[EmployeeTitle]=currEmployeeTitle))
return
result
 

If this post is useful to help you to solve your issue consider giving the post a thumbs up 

 and accepting it as a solution !

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
Top Kudoed Authors