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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Alf_C
Regular Visitor

Customer Satisfaction Analysis

Hi there,

 

Thank you for taking interest in my subject.

I have been struggling with this topic for weeks and I know there's a solution out there just to purchase "Dynamics 365" and download the "Voice of the Customer Analytics " app but I'd like to explore more on my own.

 

I have two measurements for customer satisfaction.

One is CSAT score where 1 = Very Dissatisfied to  5 = Very Satisfied.

The other is NPS score where 0 (You will definitely not recommend this brand) to 10 (You will definitely recommend this brand)

 

The calculation is (CSAT scores* count of surveys) / count of the number of surveys.

 

I have two columns for each survey (1 header for each questionaire).

And I have the results in rows below with another column giving me the region of where the survey came from and which contact center service the customer.

 

I've tried below formulas but it always giving me error:

 

CSAT Score =

SUMX('Table 1','Table 1'[Count of CSAT score]/'Table 1'[Survey Measure])

 

Count of CSAT score =
CALCULATE('Table 1','Table 1'[CSAT score column] <> "Null" )* ('Table 1'[Survey Measure])
 
Survey Measure =
CALCULATE (
COUNT ( 'Table 1'[CSAT score column] ),
NOT 'Table 1'[CSAT score column] IN { "Null", " " }
)

 

I would appreciate any help or support to resolve this query which will give me an individual CSAT and NPS score per region or contact center for each of the two surveys.

 

Much appreciated

 

 

1 ACCEPTED SOLUTION

Hi @Alf_C ,

 

I cannot work the excat same result as you need. Please check the following steps to work around.

 

1 Here I create measure as below to work on it.

 

count = COUNT('Table'[CSAT Score])
Measure = MAX('Table'[CSAT Score]) * [count]
Measure 2 = IF(ISFILTERED('Table'[CSAT Score]),BLANK(),DIVIDE(SUMX(VALUES('Table'[CSAT Score]),[Measure]),SUMX(VALUES('Table'[CSAT Score]),[count])))
8%>VOC≤2 = CALCULATE([count],FILTER('Table','Table'[CSAT Score]<=2 && 'Table'[CSAT Score]>=0)) / CALCULATE([count],ALLEXCEPT('Table','Table'[Contact Center]))
85%>VOC≥4 = CALCULATE([count],FILTER('Table','Table'[CSAT Score]<=5 && 'Table'[CSAT Score]>=3)) / CALCULATE([count],ALLEXCEPT('Table','Table'[Contact Center]))

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

4 REPLIES 4
v-frfei-msft
Community Support
Community Support

Hi @Alf_C ,

 

Could you please share your sample data and excepted result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Hi @v-frfei-msft ,

 

Kindly find below link:

https://1drv.ms/x/s!Aq_wrQrmKgkyxyjlgZRNeOsc4sWw?e=a5fVjJ

You can find expected result in sheet "Expected result"

Thank you 

Hi @Alf_C ,

 

I cannot work the excat same result as you need. Please check the following steps to work around.

 

1 Here I create measure as below to work on it.

 

count = COUNT('Table'[CSAT Score])
Measure = MAX('Table'[CSAT Score]) * [count]
Measure 2 = IF(ISFILTERED('Table'[CSAT Score]),BLANK(),DIVIDE(SUMX(VALUES('Table'[CSAT Score]),[Measure]),SUMX(VALUES('Table'[CSAT Score]),[count])))
8%>VOC≤2 = CALCULATE([count],FILTER('Table','Table'[CSAT Score]<=2 && 'Table'[CSAT Score]>=0)) / CALCULATE([count],ALLEXCEPT('Table','Table'[Contact Center]))
85%>VOC≥4 = CALCULATE([count],FILTER('Table','Table'[CSAT Score]<=5 && 'Table'[CSAT Score]>=3)) / CALCULATE([count],ALLEXCEPT('Table','Table'[Contact Center]))

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

You are amazing! Thanks a lot, Frank

Helpful resources

Announcements
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 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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