Customer Effort Score (CES) Survey

The Customer Effort Score (CES) measures how easy it is for customers to get their issues resolved. Research shows that reducing customer effort is a stronger predictor of loyalty than customer satisfaction. This template uses the standard 1-7 scale from 'Very Difficult' to 'Very Easy', with smart conditional logic that asks different follow-up questions based on the effort level reported. Low-effort experiences lead to increased customer loyalty and reduced churn.

Customer ExperiencePopular

Try the Form

We want to make sure getting help is always easy for you.
Effort Rating
Very difficult
Very easy
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
export function cesStandardSurvey(form: FormTs) {
// Customer Effort Score (CES) Survey
// Demonstrates: RatingScale (CES preset), ThumbRating, EmojiRating, MatrixQuestion, conditional visibility
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'How Was Your Experience?',
computedValue: () => 'We want to make sure getting help is always easy for you.',
customStyles: {
backgroundColor: '#0891b2',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Customer Effort Score
// ============================================
const cesSection = form.addSubform('cesSection', {
title: 'Effort Rating',
customStyles: () => {
const score = cesSection.ratingScale('effortScore')?.value();
if (score === null || score === undefined) {
return { padding: '16px', borderRadius: '8px', border: '1px dashed #cbd5e1' };
}
if (score >= 5) return { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px' };
if (score >= 3) return { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' };
return { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px' };
}
});
 
cesSection.addRow(row => {
row.addRatingScale('effortScore', {
preset: 'ces',
label: 'How easy was it to get your issue resolved today?',
showSegmentColors: false,
size: 'lg',
isRequired: true
});
});
 
// Dynamic feedback based on effort level
cesSection.addRow(row => {
row.addTextPanel('effortFeedback', {
isVisible: () => cesSection.ratingScale('effortScore')?.value() !== null,
computedValue: () => {
const score = cesSection.ratingScale('effortScore')?.value();
if (score === null || score === undefined) return '';
if (score >= 6) return 'Excellent! We are glad the experience was effortless.';
if (score >= 4) return 'Thank you for your feedback. We are always working to improve.';
return 'We are sorry it was difficult. Your feedback helps us do better.';
},
customStyles: () => {
const score = cesSection.ratingScale('effortScore')?.value();
const baseStyle = { padding: '12px', borderRadius: '6px', textAlign: 'center', fontStyle: 'italic' };
if (score === null || score === undefined) return baseStyle;
if (score >= 6) return { ...baseStyle, color: '#065f46', backgroundColor: '#ecfdf5' };
if (score >= 4) return { ...baseStyle, color: '#92400e', backgroundColor: '#fffbeb' };
return { ...baseStyle, color: '#991b1b', backgroundColor: '#fef2f2' };
}
});
});
 
// ============================================
// SECTION 2: Resolution Status
// ============================================
const resolutionSection = form.addSubform('resolutionSection', {
title: 'Issue Resolution',
isVisible: () => cesSection.ratingScale('effortScore')?.value() !== null
});
 
resolutionSection.addRow(row => {
row.addThumbRating('issueResolved', {
label: 'Was your issue fully resolved?',
showLabels: true,
upLabel: 'Yes, resolved',
downLabel: 'No, not resolved',
size: 'lg',
alignment: 'center'
});
});
 
// Unresolved follow-up
resolutionSection.addSpacer({ height: '16px' });
resolutionSection.addRow(row => {
row.addTextarea('unresolvedDetails', {
label: 'What is still unresolved?',
placeholder: 'Please describe what we can do to help...',
rows: 3,
isVisible: () => resolutionSection.thumbRating('issueResolved')?.value() === 'down',
isRequired: () => resolutionSection.thumbRating('issueResolved')?.value() === 'down'
});
});
 
// ============================================
// SECTION 3: Pain Points (for high effort)
// ============================================
const painPointsSection = form.addSubform('painPointsSection', {
title: 'What Made It Difficult?',
isVisible: () => {
const score = cesSection.ratingScale('effortScore')?.value();
return score !== null && score !== undefined && score <= 3;
},
customStyles: { backgroundColor: '#fef2f2', padding: '16px', borderRadius: '8px' }
});
 
painPointsSection.addRow(row => {
row.addCheckboxList('painPoints', {
label: 'Select all that apply:',
options: [
{ id: 'wait-time', name: 'Long wait times' },
{ id: 'transfers', name: 'Transferred multiple times' },
{ id: 'repeat-info', name: 'Had to repeat my information' },
{ id: 'unclear', name: 'Unclear instructions' },
{ id: 'knowledge', name: 'Agent lacked knowledge' },
{ id: 'tools', name: 'Technical issues/tools not working' },
{ id: 'policy', name: 'Unhelpful policies' },
{ id: 'follow-up', name: 'Required multiple follow-ups' }
],
orientation: 'vertical'
});
});
 
painPointsSection.addSpacer({ height: '16px' });
painPointsSection.addRow(row => {
row.addTextarea('painPointDetails', {
label: 'Please share more details about what went wrong',
placeholder: 'Your detailed feedback helps us improve our processes...',
rows: 3
});
});
 
// ============================================
// SECTION 4: Success Factors (for low effort)
// ============================================
const successSection = form.addSubform('successSection', {
title: 'What Worked Well?',
isVisible: () => {
const score = cesSection.ratingScale('effortScore')?.value();
return score !== null && score !== undefined && score >= 5;
},
customStyles: { backgroundColor: '#ecfdf5', padding: '16px', borderRadius: '8px' }
});
 
successSection.addRow(row => {
row.addCheckboxList('successFactors', {
label: 'What made your experience smooth?',
options: [
{ id: 'quick-response', name: 'Quick response time' },
{ id: 'first-contact', name: 'Resolved on first contact' },
{ id: 'knowledgeable', name: 'Knowledgeable agent' },
{ id: 'clear-comm', name: 'Clear communication' },
{ id: 'proactive', name: 'Proactive follow-up' },
{ id: 'self-service', name: 'Easy self-service options' },
{ id: 'empathy', name: 'Agent showed empathy' },
{ id: 'exceeded', name: 'Exceeded my expectations' }
],
orientation: 'vertical'
});
});
 
// ============================================
// SECTION 5: Channel & Agent Evaluation
// ============================================
const evaluationSection = form.addSubform('evaluationSection', {
title: 'Rate Your Experience',
isVisible: () => cesSection.ratingScale('effortScore')?.value() !== null
});
 
evaluationSection.addRow(row => {
row.addRadioButton('channel', {
label: 'How did you contact us?',
options: [
{ id: 'phone', name: 'Phone' },
{ id: 'chat', name: 'Live Chat' },
{ id: 'email', name: 'Email' },
{ id: 'self-service', name: 'Self-Service' }
],
orientation: 'horizontal'
});
});
 
evaluationSection.addSpacer({ height: '16px' });
evaluationSection.addRow(row => {
row.addMatrixQuestion('serviceMatrix', {
label: 'Please rate the following aspects:',
rows: [
{ id: 'response-time', label: 'Response time', isRequired: true },
{ id: 'communication', label: 'Communication clarity' },
{ id: 'professionalism', label: 'Professionalism' },
{ id: 'solution-quality', label: 'Quality of solution' }
],
columns: [
{ id: '1', label: 'Poor' },
{ id: '2', label: 'Fair' },
{ id: '3', label: 'Good' },
{ id: '4', label: 'Very Good' },
{ id: '5', label: 'Excellent' }
],
striped: true,
fullWidth: true
});
});
 
// ============================================
// SECTION 6: Overall Satisfaction
// ============================================
const satisfactionSection = form.addSubform('satisfactionSection', {
title: 'Overall Impression',
isVisible: () => cesSection.ratingScale('effortScore')?.value() !== null
});
 
satisfactionSection.addRow(row => {
row.addEmojiRating('overallSatisfaction', {
label: 'How satisfied are you with the overall support experience?',
preset: 'satisfaction',
size: 'lg',
showLabels: true,
alignment: 'center'
});
});
 
satisfactionSection.addSpacer({ height: '16px' });
satisfactionSection.addRow(row => {
row.addStarRating('agentRating', {
label: () => {
const channel = evaluationSection.radioButton('channel')?.value();
if (channel === 'self-service') return 'Rate the self-service experience';
return 'Rate your support agent';
},
maxStars: 5,
size: 'lg',
alignment: 'center',
showConfettiOnMax: true
});
});
 
// ============================================
// SECTION 7: Additional Comments
// ============================================
const commentsSection = form.addSubform('commentsSection', {
title: 'Any Additional Comments?',
isVisible: () => cesSection.ratingScale('effortScore')?.value() !== null
});
 
commentsSection.addRow(row => {
row.addTextarea('additionalComments', {
label: 'Share any other feedback that would help us improve',
placeholder: 'Your suggestions are valuable to us...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 8: Summary
// ============================================
const summarySection = form.addSubform('summarySection', {
title: 'Your Feedback Summary',
isVisible: () => cesSection.ratingScale('effortScore')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const effortScore = cesSection.ratingScale('effortScore')?.value();
const resolved = resolutionSection.thumbRating('issueResolved')?.value();
const satisfaction = satisfactionSection.emojiRating('overallSatisfaction')?.value();
const agentRating = satisfactionSection.starRating('agentRating')?.value();
const channel = evaluationSection.radioButton('channel')?.value();
 
if (effortScore === null || effortScore === undefined) return '';
 
let effortLevel = 'High Effort';
let emoji = '';
if (effortScore >= 6) { effortLevel = 'Very Easy'; emoji = ''; }
else if (effortScore >= 4) { effortLevel = 'Moderate'; emoji = ''; }
else { emoji = ''; }
 
let summary = `${emoji} CES Feedback Summary\n`;
summary += `${'='.repeat(28)}\n\n`;
summary += `Effort Score: ${effortScore}/7 (${effortLevel})\n`;
 
if (resolved) {
summary += `Issue Resolved: ${resolved === 'up' ? 'Yes' : 'No'}\n`;
}
 
if (channel) {
const channelLabels: Record<string, string> = {
'phone': 'Phone',
'chat': 'Live Chat',
'email': 'Email',
'self-service': 'Self-Service'
};
summary += `Contact Channel: ${channelLabels[channel] || channel}\n`;
}
 
if (satisfaction) {
const satisfactionLabels: Record<string, string> = {
'very-bad': 'Very Dissatisfied',
'bad': 'Dissatisfied',
'neutral': 'Neutral',
'good': 'Satisfied',
'excellent': 'Very Satisfied'
};
summary += `Satisfaction: ${satisfactionLabels[satisfaction] || satisfaction}\n`;
}
 
if (agentRating) {
summary += `Agent Rating: ${'*'.repeat(agentRating)}${'*'.repeat(5 - agentRating)} (${agentRating}/5)\n`;
}
 
return summary;
},
customStyles: () => {
const effortScore = cesSection.ratingScale('effortScore')?.value();
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
 
if (effortScore === null || effortScore === undefined) return baseStyles;
if (effortScore >= 5) {
return { ...baseStyles, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
} else if (effortScore >= 3) {
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
}
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback',
isVisible: () => cesSection.ratingScale('effortScore')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You!',
message: 'Your feedback helps us make every interaction easier. We appreciate you taking the time to share your experience with us.'
});
}
 

Frequently Asked Questions

What is Customer Effort Score (CES)?

CES measures how easy it is for customers to interact with your company. It uses a 1-7 scale where 1 means 'Very Difficult' and 7 means 'Very Easy'. The goal is to make every interaction as effortless as possible, which research shows increases loyalty more than delighting customers.

How is CES different from NPS and CSAT?

NPS measures loyalty and likelihood to recommend, CSAT measures satisfaction with a specific interaction, while CES specifically measures the effort required. CES is the best predictor of future behavior - customers who have low-effort experiences are 94% more likely to repurchase.

When should I use a CES survey?

Use CES immediately after support interactions, self-service experiences, onboarding processes, or any touchpoint where customers need to accomplish something. The timing is crucial - send it within 24 hours of the interaction while the experience is fresh.

What's a good CES score?

Scores of 5-7 indicate low effort and are considered good. The industry average is around 5.5. Focus on reducing scores below 4, as these indicate friction points that can lead to churn. Track your score over time and benchmark against your industry.

How do I calculate the CES score?

Calculate the average of all responses. Alternatively, calculate the percentage of customers scoring 5-7 (low effort) minus those scoring 1-3 (high effort) for a net score. Both methods are valid and help track improvement over time.