Client Satisfaction Survey

The Client Satisfaction Survey is designed for B2B relationships where account health directly impacts revenue. It combines NPS with detailed relationship health assessment, service quality ratings, and strategic alignment questions. Use it quarterly to track client sentiment, identify at-risk accounts early, and uncover expansion opportunities. The matrix-based questions efficiently capture multi-dimensional feedback from busy executives.

B2B & Professional

Try the Form

Your feedback helps us strengthen our partnership and deliver better results.
Account Information
 
Overall Recommendation
Not at all likely
Extremely likely
 
Relationship Health
Poor Fair Good Excellent
Communication quality*
Responsiveness to requests*
Understanding your business*
Proactive problem-solving
Trust and transparency
Value for investment*
Service Quality
0/5
0/5
0/5
Account Team
0/5
0/5
0/5
0/5
Strategic Alignment
Not at all
Completely
Future Outlook
 
Competitive Landscape
Additional Feedback
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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
export function clientSatisfactionSurvey(form: FormTs) {
// Client Satisfaction Survey - B2B relationship health assessment
// Demonstrates: RatingScale (NPS), MatrixQuestion, StarRating, Slider, RadioButton, ThumbRating, SuggestionChips
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Client Satisfaction Survey',
computedValue: () => 'Your feedback helps us strengthen our partnership and deliver better results.',
customStyles: {
background: 'linear-gradient(135deg, #0f766e 0%, #14b8a6 100%)',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Account Information
// ============================================
const accountSection = form.addSubform('accountSection', {
title: 'Account Information'
});
 
accountSection.addRow(row => {
row.addTextbox('companyName', {
label: 'Company name',
placeholder: 'Your organization...',
isRequired: true
}, '1fr');
 
row.addDropdown('respondentRole', {
label: 'Your role',
options: [
{ id: 'executive', name: 'Executive/C-Level' },
{ id: 'director', name: 'Director/VP' },
{ id: 'manager', name: 'Manager' },
{ id: 'user', name: 'Day-to-day User' },
{ id: 'technical', name: 'Technical Contact' },
{ id: 'procurement', name: 'Procurement/Finance' },
{ id: 'other', name: 'Other' }
],
placeholder: 'Select role...',
isRequired: true
}, '1fr');
});
 
accountSection.addRow(row => {
row.addDropdown('relationshipLength', {
label: 'How long have you been a client?',
options: [
{ id: '0-6m', name: 'Less than 6 months' },
{ id: '6-12m', name: '6-12 months' },
{ id: '1-2y', name: '1-2 years' },
{ id: '2-5y', name: '2-5 years' },
{ id: '5y+', name: 'More than 5 years' }
],
placeholder: 'Select duration...'
}, '1fr');
 
row.addDropdown('engagementLevel', {
label: 'How often do you interact with us?',
options: [
{ id: 'daily', name: 'Daily' },
{ id: 'weekly', name: 'Weekly' },
{ id: 'monthly', name: 'Monthly' },
{ id: 'quarterly', name: 'Quarterly' },
{ id: 'rarely', name: 'Rarely' }
],
placeholder: 'Select frequency...'
}, '1fr');
});
 
// ============================================
// SECTION 2: Net Promoter Score
// ============================================
const npsSection = form.addSubform('npsSection', {
title: 'Overall Recommendation',
customStyles: () => {
const category = npsSection.ratingScale('clientNps')?.npsCategory();
if (category === 'promoter') return { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px' };
if (category === 'passive') return { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' };
if (category === 'detractor') return { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px' };
return { padding: '16px', borderRadius: '8px', border: '1px dashed #cbd5e1' };
}
});
 
npsSection.addRow(row => {
row.addRatingScale('clientNps', {
label: 'How likely are you to recommend us to a colleague or business partner?',
preset: 'nps',
showCategoryLabel: true,
showSegmentColors: true,
alignment: 'center',
isRequired: true
});
});
 
npsSection.addRow(row => {
row.addTextarea('npsReason', {
label: () => {
const category = npsSection.ratingScale('clientNps')?.npsCategory();
switch (category) {
case 'promoter': return 'What makes you willing to recommend us?';
case 'passive': return 'What would it take to earn a 9 or 10?';
case 'detractor': return 'What is the primary reason for your score?';
default: return 'Please share the reason for your score';
}
},
placeholder: () => {
const category = npsSection.ratingScale('clientNps')?.npsCategory();
if (category === 'promoter') return 'We appreciate understanding what we do well...';
if (category === 'detractor') return 'Your candid feedback helps us improve...';
return 'Your feedback is valuable to us...';
},
rows: 3,
autoExpand: true,
isVisible: () => npsSection.ratingScale('clientNps')?.value() !== null
});
});
 
// ============================================
// SECTION 3: Relationship Health Matrix
// ============================================
const healthSection = form.addSubform('healthSection', {
title: 'Relationship Health'
});
 
healthSection.addRow(row => {
row.addMatrixQuestion('relationshipMatrix', {
label: 'Rate the following aspects of our partnership:',
rows: [
{ id: 'communication', label: 'Communication quality', isRequired: true },
{ id: 'responsiveness', label: 'Responsiveness to requests', isRequired: true },
{ id: 'understanding', label: 'Understanding your business', isRequired: true },
{ id: 'proactive', label: 'Proactive problem-solving', isRequired: false },
{ id: 'trust', label: 'Trust and transparency', isRequired: false },
{ id: 'value', label: 'Value for investment', isRequired: true }
],
columns: [
{ id: 'poor', label: 'Poor' },
{ id: 'fair', label: 'Fair' },
{ id: 'good', label: 'Good' },
{ id: 'excellent', label: 'Excellent' }
],
striped: true,
fullWidth: true
});
});
 
// ============================================
// SECTION 4: Service Quality
// ============================================
const serviceSection = form.addSubform('serviceSection', {
title: 'Service Quality'
});
 
serviceSection.addRow(row => {
row.addStarRating('deliveryQuality', {
label: 'Quality of deliverables',
maxStars: 5,
size: 'lg',
alignment: 'center'
});
});
 
serviceSection.addRow(row => {
row.addStarRating('timelyDelivery', {
label: 'Timeliness of delivery',
maxStars: 5,
size: 'lg',
alignment: 'center'
});
});
 
serviceSection.addRow(row => {
row.addStarRating('issueResolution', {
label: 'Issue resolution effectiveness',
maxStars: 5,
size: 'lg',
alignment: 'center'
});
});
 
// Low scores follow-up
serviceSection.addSpacer();
 
serviceSection.addRow(row => {
row.addTextarea('serviceIssues', {
label: 'What service issues need immediate attention?',
placeholder: 'Please describe any ongoing concerns...',
rows: 2,
isVisible: () => {
const quality = serviceSection.starRating('deliveryQuality')?.value() ?? 0;
const timely = serviceSection.starRating('timelyDelivery')?.value() ?? 0;
const resolution = serviceSection.starRating('issueResolution')?.value() ?? 0;
return (quality > 0 && quality <= 2) || (timely > 0 && timely <= 2) || (resolution > 0 && resolution <= 2);
}
});
});
 
// ============================================
// SECTION 5: Account Team Evaluation
// ============================================
const teamSection = form.addSubform('teamSection', {
title: 'Account Team'
});
 
teamSection.addRow(row => {
row.addStarRating('accountManager', {
label: 'Account manager effectiveness',
maxStars: 5,
size: 'md',
showCounter: true
}, '1fr');
 
row.addStarRating('technicalTeam', {
label: 'Technical team expertise',
maxStars: 5,
size: 'md',
showCounter: true
}, '1fr');
});
 
teamSection.addRow(row => {
row.addStarRating('executiveAccess', {
label: 'Executive accessibility',
maxStars: 5,
size: 'md',
showCounter: true
}, '1fr');
 
row.addStarRating('teamConsistency', {
label: 'Team consistency and continuity',
maxStars: 5,
size: 'md',
showCounter: true
}, '1fr');
});
 
// ============================================
// SECTION 6: Strategic Alignment
// ============================================
const strategySection = form.addSubform('strategySection', {
title: 'Strategic Alignment'
});
 
strategySection.addRow(row => {
row.addRatingScale('strategyAlignment', {
label: 'How well do we understand your strategic priorities?',
preset: 'likert-5',
lowLabel: 'Not at all',
highLabel: 'Completely',
alignment: 'center'
});
});
 
strategySection.addRow(row => {
row.addThumbRating('growthPartner', {
label: 'Do you see us as a strategic growth partner?',
showLabels: true,
upLabel: 'Yes, strategic partner',
downLabel: 'No, just a vendor',
size: 'lg',
alignment: 'center'
});
});
 
strategySection.addSpacer();
 
strategySection.addRow(row => {
row.addTextarea('strategyGaps', {
label: 'What would make us a more valuable strategic partner?',
placeholder: 'How can we better align with your business goals?',
rows: 2,
autoExpand: true,
isVisible: () => strategySection.thumbRating('growthPartner')?.value() === 'down'
});
});
 
// ============================================
// SECTION 7: Future Outlook
// ============================================
const futureSection = form.addSubform('futureSection', {
title: 'Future Outlook'
});
 
futureSection.addRow(row => {
row.addRadioButton('renewalLikelihood', {
label: 'How likely are you to renew/expand your engagement?',
options: [
{ id: 'definitely', name: 'Definitely will renew' },
{ id: 'likely', name: 'Likely to renew' },
{ id: 'uncertain', name: 'Uncertain' },
{ id: 'unlikely', name: 'Unlikely to renew' },
{ id: 'will-not', name: 'Will not renew' }
],
orientation: 'vertical'
});
});
 
// At-risk follow-up
futureSection.addRow(row => {
row.addTextarea('renewalConcerns', {
label: 'What concerns affect your renewal decision?',
placeholder: 'Please share so we can address these concerns...',
rows: 2,
isRequired: true,
isVisible: () => {
const likelihood = futureSection.radioButton('renewalLikelihood')?.value();
return likelihood === 'uncertain' || likelihood === 'unlikely' || likelihood === 'will-not';
}
});
});
 
futureSection.addSpacer();
 
futureSection.addRow(row => {
row.addSuggestionChips('expansionAreas', {
label: 'Which additional services interest you?',
suggestions: [
{ id: 'none', name: 'None at this time' },
{ id: 'consulting', name: 'Consulting' },
{ id: 'training', name: 'Training' },
{ id: 'support', name: 'Premium Support' },
{ id: 'integration', name: 'Integrations' },
{ id: 'analytics', name: 'Analytics' },
{ id: 'custom', name: 'Custom Development' }
],
alignment: 'left'
});
});
 
// ============================================
// SECTION 8: Competitive Context
// ============================================
const competitiveSection = form.addSubform('competitiveSection', {
title: 'Competitive Landscape'
});
 
competitiveSection.addRow(row => {
row.addThumbRating('evaluatingAlternatives', {
label: 'Are you currently evaluating alternatives?',
showLabels: true,
upLabel: 'Yes, evaluating options',
downLabel: 'No, satisfied',
size: 'lg',
alignment: 'center'
});
});
 
competitiveSection.addRow(row => {
row.addTextarea('competitorAdvantages', {
label: 'What do competitors offer that we should consider?',
placeholder: 'This helps us stay competitive and serve you better...',
rows: 2,
isVisible: () => competitiveSection.thumbRating('evaluatingAlternatives')?.value() === 'up'
});
});
 
// ============================================
// SECTION 9: Additional Feedback
// ============================================
const additionalSection = form.addSubform('additionalSection', {
title: 'Additional Feedback'
});
 
additionalSection.addRow(row => {
row.addTextarea('topPriority', {
label: 'What is the #1 thing we should improve?',
placeholder: 'If we could fix one thing, what would have the biggest impact?',
rows: 2,
autoExpand: true
});
});
 
additionalSection.addRow(row => {
row.addTextarea('appreciation', {
label: 'What do we do particularly well?',
placeholder: 'Share what you appreciate about working with us...',
rows: 2,
autoExpand: true
});
});
 
additionalSection.addRow(row => {
row.addThumbRating('caseStudy', {
label: 'Would you be open to being a reference or case study?',
showLabels: true,
upLabel: 'Yes, happy to help',
downLabel: 'Not at this time',
size: 'md',
alignment: 'center'
});
});
 
// ============================================
// SECTION 10: Summary
// ============================================
const summarySection = form.addSubform('summarySection', {
title: 'Feedback Summary',
isVisible: () => npsSection.ratingScale('clientNps')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summary', {
computedValue: () => {
const company = accountSection.textbox('companyName')?.value() || 'Client';
const nps = npsSection.ratingScale('clientNps')?.value() ?? 0;
const npsCategory = npsSection.ratingScale('clientNps')?.npsCategory();
 
const quality = serviceSection.starRating('deliveryQuality')?.value() ?? 0;
const timely = serviceSection.starRating('timelyDelivery')?.value() ?? 0;
const resolution = serviceSection.starRating('issueResolution')?.value() ?? 0;
const serviceAvg = (quality + timely + resolution) / 3;
 
const am = teamSection.starRating('accountManager')?.value() ?? 0;
const tech = teamSection.starRating('technicalTeam')?.value() ?? 0;
const exec = teamSection.starRating('executiveAccess')?.value() ?? 0;
const teamAvg = (am + tech + exec) / 3;
 
const strategy = strategySection.ratingScale('strategyAlignment')?.value() ?? 0;
const growthPartner = strategySection.thumbRating('growthPartner')?.value();
const renewal = futureSection.radioButton('renewalLikelihood')?.value();
const evaluating = competitiveSection.thumbRating('evaluatingAlternatives')?.value();
 
const renewalLabels: Record<string, string> = {
'definitely': 'Definite Renewal', 'likely': 'Likely Renewal',
'uncertain': 'Uncertain', 'unlikely': 'At Risk', 'will-not': 'Churn Risk'
};
 
let summary = `Client Satisfaction: ${company}\n`;
summary += '═'.repeat(35) + '\n\n';
 
summary += `NPS Score: ${nps}/10 (${npsCategory?.toUpperCase() || 'N/A'})\n\n`;
 
summary += 'Service Quality:\n';
summary += ` Delivery Quality: ${quality}/5\n`;
summary += ` Timeliness: ${timely}/5\n`;
summary += ` Issue Resolution: ${resolution}/5\n`;
summary += ` Average: ${serviceAvg.toFixed(1)}/5\n\n`;
 
summary += 'Team Ratings:\n';
summary += ` Account Manager: ${am}/5\n`;
summary += ` Technical Team: ${tech}/5\n`;
summary += ` Executive Access: ${exec}/5\n`;
summary += ` Average: ${teamAvg.toFixed(1)}/5\n\n`;
 
summary += `Strategic Alignment: ${strategy}/5\n`;
summary += `Growth Partner: ${growthPartner === 'up' ? 'Yes' : growthPartner === 'down' ? 'No' : 'N/A'}\n`;
summary += `Renewal Outlook: ${renewalLabels[renewal || ''] || 'Not answered'}\n`;
 
// Risk indicators
const risks: string[] = [];
if (npsCategory === 'detractor') risks.push('Detractor - needs immediate attention');
if (serviceAvg < 3 && serviceAvg > 0) risks.push('Service quality below target');
if (renewal === 'uncertain' || renewal === 'unlikely' || renewal === 'will-not') risks.push('Renewal at risk');
if (evaluating === 'up') risks.push('Evaluating competitors');
if (growthPartner === 'down') risks.push('Not seen as strategic partner');
 
if (risks.length > 0) {
summary += '\n⚠️ RISK INDICATORS:\n';
risks.forEach(risk => summary += ` • ${risk}\n`);
}
 
// Opportunities
if (npsCategory === 'promoter') {
summary += '\n✨ OPPORTUNITY: Reference/case study candidate';
}
 
return summary;
},
customStyles: () => {
const npsCategory = npsSection.ratingScale('clientNps')?.npsCategory();
const renewal = futureSection.radioButton('renewalLikelihood')?.value();
 
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '13px'
};
 
// High risk
if (npsCategory === 'detractor' || renewal === 'unlikely' || renewal === 'will-not') {
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
// Promoter
if (npsCategory === 'promoter' && (renewal === 'definitely' || renewal === 'likely')) {
return { ...baseStyles, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
}
// Default
return { ...baseStyles, backgroundColor: '#f0fdfa', borderLeft: '4px solid #14b8a6' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Survey'
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank you for your feedback!',
message: 'Your insights are invaluable to our partnership. Your account manager will review this feedback and reach out to discuss any concerns or opportunities. We appreciate your continued trust in our team.'
});
}
 

Frequently Asked Questions

How often should we survey B2B clients?

Quarterly is ideal for most B2B relationships - frequent enough to catch issues but not so often that it causes survey fatigue. For strategic accounts, consider bi-annual deep dives. For transactional relationships, annual may suffice. Always survey after major milestones or issues.

Who should receive the client satisfaction survey?

Target decision-makers and heavy users: executive sponsors, day-to-day users, and budget holders. Get multiple perspectives per account when possible. Avoid sending to the entire organization - it dilutes response quality and annoys clients.

How do we act on B2B NPS feedback?

For Detractors: immediate escalation to account manager, executive outreach, remediation plan within 48 hours. For Passives: identify improvement opportunities, discuss in QBR. For Promoters: request referrals/case studies, explore expansion. Always close the loop with respondents.

What response rate should B2B surveys achieve?

Target 50-70% for strategic accounts, 30-40% for standard accounts. Low rates signal relationship issues. Improve rates with personal outreach, executive sponsorship, and demonstrating action on past feedback. Keep surveys under 10 minutes.

How do we predict churn from survey data?

Watch for: NPS drops >20 points, declining engagement, negative service ratings, strategic misalignment signals, reduced contact frequency. Create a composite health score weighting these factors. Flag accounts scoring below threshold for intervention.

Should surveys be anonymous for B2B clients?

No - B2B surveys should identify respondents to enable follow-up. Clients expect personalized response. However, be transparent about who sees feedback and how it's used. Some clients may be more candid with anonymous options for sensitive topics.