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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Nate
Frequent Visitor

I have no idea to solve this issue related to DAX...

Guys, I have been trying to solve this issue for whoe day.

 

but unfortunately, I coud not find the answer. could you help me to solve this one?

 

1. Table information

 (1) A [Sales] - Product ID, SalesDate,sales count

 (2) B [Customer Complain] - Product ID, ComplainDate, inbound call count

 (3) C [Issue management] - Product ID, Issue_createdate, Issue_resolvedDate

 

2. Calcuration field

 (1) Contact rate = Sales count / Inbound call count

 

3.  FYI

 (1) We have a lot of inbound complain call from consumer everyday. if there is serious or important issue, we just change the priority complain to issue. Our issue management team handle that issue by themself

 (2) we want to check issue management team performance. for this, I would like to compare Before vs After contact rate by issue_resolvedDate. if before contact rate is 34% and after contact rate is 12%. it means our issue management is successful.

 

3. Question

 (1) I'd like to know the 'contact rate' data based on issue_resolveddate by each product_ID

      how can i make this number by DAX or whatever.

 

could you help this one? 

 

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

Hi Nate,

 

Based on your description, all the three tables are based on column [Product ID], right? As a general solution, DAX pattern below may be for your reference and check if it can work:

 

Contact rate =
CALCULATE (
    COUNT ( 'Sales'[Sales] ) / COUNT ( 'Customer Complain'[inbound_call] ),
    ALLEXCEPT (
        'Issue management',
        'Issue management'[Issue_resolvedDate],
        'Issue management'[Product ID]
    )
)

In addtion, if you still need help, could you please give more details about your tables and expected result?

 

Regards,

Jimmy Tao

View solution in original post

2 REPLIES 2
Nate
Frequent Visitor

Guys, I have been trying to solve this issue for whoe day.

 

but unfortunately, I coud not find the answer. could you help me to solve this one?

 

1. Table information

 (1) A [Sales] - Product ID, SalesDate,sales count

 (2) B [Customer Complain] - Product ID, ComplainDate, inbound call count

 (3) C [Issue management] - Product ID, Issue_createdate, Issue_resolvedDate

 

2. Calcuration field

 (1) Contact rate = Sales count / Inbound call count

 

3.  FYI

 (1) We have a lot of inbound complain call from consumer everyday. if there is serious or important issue, we just change the priority complain to issue. Our issue management team handle that issue by themself

 (2) we want to check issue manageme team performance. for this, I would like to compare Before vs After contact rate by issue_resolvedDate. if before contact rate is 34% and after contact rate is 12%. it means our issue management is successful.

 

3. Question

 (1) I'd like to know the 'contact rate' data based on issue_resolveddate by each product_ID

      how can i make this number by DAX or whatever.

 

could you help this one? 

 

v-yuta-msft
Community Support
Community Support

Hi Nate,

 

Based on your description, all the three tables are based on column [Product ID], right? As a general solution, DAX pattern below may be for your reference and check if it can work:

 

Contact rate =
CALCULATE (
    COUNT ( 'Sales'[Sales] ) / COUNT ( 'Customer Complain'[inbound_call] ),
    ALLEXCEPT (
        'Issue management',
        'Issue management'[Issue_resolvedDate],
        'Issue management'[Product ID]
    )
)

In addtion, if you still need help, could you please give more details about your tables and expected result?

 

Regards,

Jimmy Tao

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.