Installation Experience Survey

The Installation Experience Survey helps service companies gather comprehensive feedback after installations, repairs, or home services. Covering the complete customer journey from scheduling to completion, this survey evaluates technician professionalism, punctuality, communication, workmanship quality, and site cleanliness. With conditional logic for different scenarios and a professional summary, you'll identify training opportunities and maintain high service standards.

Service & Support

Try the Form

Help us maintain our service excellence. Your feedback improves our technicians.
Service Details
 
 
 
Additional Feedback
Feedback Summary
๐Ÿ”ง Installation Feedback Summary โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ• ๐Ÿ“Š Ratings: โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ ๐Ÿ“… Scheduling: โ˜†โ˜†โ˜†โ˜†โ˜† ๐Ÿ”จ Work Quality: โ˜†โ˜†โ˜†โ˜†โ˜† ๐Ÿงน Site Cleanup: โ˜†โ˜†โ˜†โ˜†โ˜† โญ Overall: โ˜†โ˜†โ˜†โ˜†โ˜† (0/5)
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
export function installationFeedbackForm(form: FormTs) {
// Installation Experience Survey
// Demonstrates: StarRating, RatingScale, MatrixQuestion, EmojiRating,
// ThumbRating, Datepicker, Timepicker, Dropdown, conditional visibility
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Installation Feedback',
computedValue: () => 'Help us maintain our service excellence. Your feedback improves our technicians.',
customStyles: {
backgroundColor: '#0891b2',
color: 'white',
padding: '28px',
borderRadius: '12px',
textAlign: 'center',
fontSize: '15px'
}
});
});
 
// ============================================
// SECTION 1: Service Details
// ============================================
const detailsSection = form.addSubform('details', {
title: 'Service Details',
customStyles: { backgroundColor: '#f0fdfa', padding: '20px', borderRadius: '10px' }
});
 
detailsSection.addRow(row => {
row.addDropdown('serviceType', {
label: 'Type of service performed',
options: [
{ id: 'new-install', name: 'New Installation' },
{ id: 'upgrade', name: 'Equipment Upgrade' },
{ id: 'repair', name: 'Repair Service' },
{ id: 'maintenance', name: 'Scheduled Maintenance' },
{ id: 'inspection', name: 'Inspection' },
{ id: 'other', name: 'Other Service' }
],
placeholder: 'Select service type...',
isRequired: true
}, '1fr');
row.addTextbox('technicianName', {
label: 'Technician name (if known)',
placeholder: 'Enter technician name...'
}, '1fr');
});
 
detailsSection.addRow(row => {
row.addDatepicker('serviceDate', {
label: 'Date of service',
maxDate: () => new Date().toISOString(),
isRequired: true
}, '1fr');
row.addTimepicker('arrivalTime', {
label: 'Approximate arrival time'
}, '1fr');
});
 
// ============================================
// SECTION 2: Scheduling & Punctuality
// ============================================
const schedulingSection = form.addSubform('scheduling', {
title: 'Scheduling & Punctuality',
isVisible: () => detailsSection.dropdown('serviceType')?.value() !== null
});
 
schedulingSection.addRow(row => {
row.addStarRating('schedulingEase', {
label: 'How easy was it to schedule the appointment?',
maxStars: 5,
size: 'lg',
alignment: 'center',
filledColor: '#0891b2'
});
});
 
schedulingSection.addRow(row => {
row.addRadioButton('arrivedOnTime', {
label: 'Did the technician arrive within the scheduled window?',
options: [
{ id: 'early', name: 'Arrived early' },
{ id: 'on-time', name: 'On time' },
{ id: 'late-15', name: 'Up to 15 min late' },
{ id: 'late-30', name: '15-30 min late' },
{ id: 'late-60', name: 'More than 30 min late' },
{ id: 'no-show', name: 'Did not arrive / Had to reschedule' }
],
orientation: 'vertical'
});
});
 
// Late arrival follow-up
schedulingSection.addRow(row => {
row.addCheckbox('wasNotified', {
label: 'Were you notified about the delay?',
isVisible: () => {
const arrival = schedulingSection.radioButton('arrivedOnTime')?.value();
return arrival === 'late-30' || arrival === 'late-60' || arrival === 'no-show';
}
});
});
 
// ============================================
// SECTION 3: Technician Rating Matrix
// ============================================
const technicianSection = form.addSubform('technician', {
title: 'Technician Evaluation',
isVisible: () => detailsSection.dropdown('serviceType')?.value() !== null,
customStyles: { backgroundColor: '#ecfeff', padding: '20px', borderRadius: '10px' }
});
 
technicianSection.addRow(row => {
row.addMatrixQuestion('technicianMatrix', {
label: 'Rate the technician on the following aspects:',
rows: [
{ id: 'professional', label: 'Professional appearance', isRequired: true },
{ id: 'courteous', label: 'Courtesy and friendliness', isRequired: true },
{ id: 'knowledgeable', label: 'Technical knowledge', isRequired: true },
{ id: 'explained', label: 'Explained the work clearly', isRequired: true },
{ id: 'efficient', label: 'Worked efficiently', isRequired: true },
{ id: 'respectful', label: 'Respectful of your property', isRequired: true }
],
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 4: Work Quality
// ============================================
const qualitySection = form.addSubform('quality', {
title: 'Installation Quality',
isVisible: () => detailsSection.dropdown('serviceType')?.value() !== null
});
 
qualitySection.addRow(row => {
row.addStarRating('workQuality', {
label: 'Overall quality of the installation work',
maxStars: 5,
size: 'lg',
alignment: 'center',
showConfettiOnMax: true,
filledColor: '#10b981'
}, '1fr');
row.addStarRating('siteCleanup', {
label: 'Cleanliness of the work area after completion',
maxStars: 5,
size: 'lg',
alignment: 'center',
filledColor: '#10b981'
}, '1fr');
});
 
qualitySection.addSpacer({ height: '16px' });
 
qualitySection.addRow(row => {
row.addThumbRating('equipmentWorking', {
label: 'Is the installed equipment working properly?',
showLabels: true,
upLabel: 'Yes, working great',
downLabel: 'No, having issues',
alignment: 'center',
size: 'lg'
});
});
 
// Issues follow-up
qualitySection.addSpacer({
height: '16px',
isVisible: () => qualitySection.thumbRating('equipmentWorking')?.value() === 'down'
});
 
qualitySection.addRow(row => {
row.addTextarea('issueDescription', {
label: 'Please describe the issue you are experiencing',
placeholder: 'Describe what is not working correctly...',
rows: 3,
isRequired: () => qualitySection.thumbRating('equipmentWorking')?.value() === 'down',
isVisible: () => qualitySection.thumbRating('equipmentWorking')?.value() === 'down'
});
});
 
qualitySection.addRow(row => {
row.addCheckbox('needsCallback', {
label: 'I would like a callback to resolve this issue',
isVisible: () => qualitySection.thumbRating('equipmentWorking')?.value() === 'down'
});
});
 
// ============================================
// SECTION 5: Overall Experience
// ============================================
const overallSection = form.addSubform('overall', {
title: 'Overall Experience',
isVisible: () => detailsSection.dropdown('serviceType')?.value() !== null,
customStyles: () => {
const rating = overallSection.starRating('overallRating')?.value();
if (rating !== null && rating !== undefined) {
if (rating >= 5) return { backgroundColor: '#d1fae5', padding: '20px', borderRadius: '10px' };
if (rating >= 4) return { backgroundColor: '#ecfdf5', padding: '20px', borderRadius: '10px' };
if (rating >= 3) return { backgroundColor: '#fffbeb', padding: '20px', borderRadius: '10px' };
return { backgroundColor: '#fef2f2', padding: '20px', borderRadius: '10px' };
}
return { padding: '20px', borderRadius: '10px', border: '1px solid #e5e7eb' };
}
});
 
overallSection.addRow(row => {
row.addStarRating('overallRating', {
label: 'How would you rate your overall installation experience?',
maxStars: 5,
size: 'xl',
alignment: 'center',
showConfettiOnMax: true,
filledColor: '#0891b2'
});
});
 
overallSection.addRow(row => {
row.addEmojiRating('emotionAfter', {
label: 'How do you feel about the completed installation?',
preset: 'satisfaction',
size: 'lg',
showLabels: true,
alignment: 'center',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
});
 
// NPS for installation
overallSection.addSpacer({ height: '16px' });
 
overallSection.addRow(row => {
row.addRatingScale('npsScore', {
label: 'How likely are you to recommend our installation services?',
preset: 'nps',
showCategoryLabel: true,
showSegmentColors: true,
alignment: 'center',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
});
 
// ============================================
// SECTION 6: Feedback & Suggestions
// ============================================
const feedbackSection = form.addSubform('feedback', {
title: 'Additional Feedback',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
feedbackSection.addRow(row => {
row.addSuggestionChips('whatWentWell', {
label: 'What went particularly well?',
suggestions: [
{ id: 'punctual', name: 'On-time arrival' },
{ id: 'professional', name: 'Professional technician' },
{ id: 'clean', name: 'Clean work area' },
{ id: 'thorough', name: 'Thorough work' },
{ id: 'fast', name: 'Quick completion' },
{ id: 'explained', name: 'Good explanations' }
],
alignment: 'left'
}, '1fr');
row.addSuggestionChips('whatToImprove', {
label: 'What could we improve?',
suggestions: [
{ id: 'scheduling', name: 'Scheduling process' },
{ id: 'communication', name: 'Communication' },
{ id: 'punctuality', name: 'Punctuality' },
{ id: 'cleanup', name: 'Cleanup' },
{ id: 'pricing', name: 'Pricing clarity' },
{ id: 'followup', name: 'Follow-up support' }
],
alignment: 'left'
}, '1fr');
});
 
feedbackSection.addSpacer({ height: '16px' });
 
feedbackSection.addRow(row => {
row.addTextarea('additionalComments', {
label: () => {
const rating = overallSection.starRating('overallRating')?.value();
if (rating !== null && rating !== undefined && rating <= 2) {
return 'Please tell us what went wrong so we can make it right';
}
if (rating !== null && rating !== undefined && rating >= 5) {
return 'Anything else you\'d like to share about your great experience?';
}
return 'Any additional comments or suggestions?';
},
placeholder: 'Your feedback helps us improve...',
rows: 4,
autoExpand: true
});
});
 
// ============================================
// SECTION 7: Summary
// ============================================
const summarySection = form.addSubform('summary', {
title: 'Feedback Summary',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const serviceType = detailsSection.dropdown('serviceType')?.value();
const technician = detailsSection.textbox('technicianName')?.value();
const scheduling = schedulingSection.starRating('schedulingEase')?.value();
const arrival = schedulingSection.radioButton('arrivedOnTime')?.value();
const workQuality = qualitySection.starRating('workQuality')?.value();
const cleanup = qualitySection.starRating('siteCleanup')?.value();
const equipmentOk = qualitySection.thumbRating('equipmentWorking')?.value();
const overall = overallSection.starRating('overallRating')?.value();
const nps = overallSection.ratingScale('npsScore')?.value();
 
if (overall === null || overall === undefined) return '';
 
const serviceLabels: Record<string, string> = {
'new-install': 'New Installation',
'upgrade': 'Equipment Upgrade',
'repair': 'Repair Service',
'maintenance': 'Scheduled Maintenance',
'inspection': 'Inspection',
'other': 'Other Service'
};
 
const arrivalLabels: Record<string, string> = {
'early': 'Early', 'on-time': 'On time', 'late-15': 'Slightly late',
'late-30': 'Late', 'late-60': 'Very late', 'no-show': 'Rescheduled'
};
 
let summary = '๐Ÿ”ง Installation Feedback Summary\n';
summary += `${'โ•'.repeat(35)}\n\n`;
 
// Service info
if (serviceType) {
summary += `๐Ÿ“‹ Service: ${serviceLabels[serviceType] || serviceType}\n`;
}
if (technician) {
summary += `๐Ÿ‘ท Technician: ${technician}\n`;
}
 
summary += '\n๐Ÿ“Š Ratings:\n';
summary += `${'โ”€'.repeat(25)}\n`;
 
// Ratings
if (scheduling !== null && scheduling !== undefined) {
summary += `๐Ÿ“… Scheduling: ${'โ˜…'.repeat(scheduling)}${'โ˜†'.repeat(5 - scheduling)}\n`;
}
if (arrival) {
const arrivalEmoji = arrival === 'on-time' || arrival === 'early' ? 'โœ…' : 'โฐ';
summary += `${arrivalEmoji} Arrival: ${arrivalLabels[arrival] || arrival}\n`;
}
if (workQuality !== null && workQuality !== undefined) {
summary += `๐Ÿ”จ Work Quality: ${'โ˜…'.repeat(workQuality)}${'โ˜†'.repeat(5 - workQuality)}\n`;
}
if (cleanup !== null && cleanup !== undefined) {
summary += `๐Ÿงน Site Cleanup: ${'โ˜…'.repeat(cleanup)}${'โ˜†'.repeat(5 - cleanup)}\n`;
}
if (equipmentOk !== null) {
const equipEmoji = equipmentOk === 'up' ? 'โœ…' : 'โš ๏ธ';
summary += `${equipEmoji} Equipment: ${equipmentOk === 'up' ? 'Working properly' : 'Has issues'}\n`;
}
 
// Overall
summary += `\nโญ Overall: ${'โ˜…'.repeat(overall)}${'โ˜†'.repeat(5 - overall)} (${overall}/5)\n`;
 
// NPS
if (nps !== null && nps !== undefined) {
const category = overallSection.ratingScale('npsScore')?.npsCategory();
const emoji = category === 'promoter' ? '๐ŸŽ‰' : category === 'passive' ? '๐Ÿค”' : '๐Ÿ˜Ÿ';
summary += `${emoji} NPS: ${nps}/10 (${category})`;
}
 
return summary;
},
customStyles: () => {
const overall = overallSection.starRating('overallRating')?.value();
const base = {
padding: '20px',
borderRadius: '10px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
 
if (overall !== null && overall !== undefined) {
if (overall >= 4) return { ...base, backgroundColor: '#ecfdf5', borderLeft: '4px solid #10b981' };
if (overall >= 3) return { ...base, backgroundColor: '#fffbeb', borderLeft: '4px solid #f59e0b' };
return { ...base, backgroundColor: '#fef2f2', borderLeft: '4px solid #ef4444' };
}
return { ...base, backgroundColor: '#f8fafc' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: () => {
const overall = overallSection.starRating('overallRating')?.value();
if (overall !== null && overall !== undefined && overall >= 5) return 'Submit Feedback โญ';
return 'Submit Feedback';
},
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank you for your feedback!',
message: 'Your input helps us maintain high service standards. If you reported any issues, our team will follow up with you shortly.'
});
}
 

Frequently Asked Questions

What aspects of installation does this survey measure?

The survey measures six key dimensions: Scheduling & Communication (booking ease, appointment confirmation), Punctuality (arrival time, time estimate accuracy), Technician Professionalism (courtesy, expertise, explanation), Work Quality (installation quality, attention to detail), Site Cleanliness (cleanup after work), and Overall Satisfaction with NPS score.

Can I track individual technician performance?

Yes. The survey includes a technician name field so you can aggregate feedback by individual installer. This enables performance comparisons, identification of training needs, and recognition of top performers.

How should I handle negative feedback?

The survey includes conditional follow-up questions for low ratings. Customers can describe issues and indicate if they want a callback. Route negative feedback (3 stars or below) to supervisors immediately for service recovery. Address concerns within 24-48 hours.

When should I send this survey?

Send within 24-48 hours after installation completion while the experience is fresh. Automated triggers work best - send as soon as the technician marks the job complete in your system. Evening sends (6-8 PM) often get higher response rates.

What's a good response rate for service surveys?

Aim for 20-30% response rate. Higher rates indicate engaged customers. If your rate drops below 15%, consider shortening the survey or adding incentives. SMS delivery often yields 2-3x higher response rates than email for service surveys.

How do I benchmark installation service scores?

Track your own improvement over time. Industry benchmarks suggest: Excellent service is 4.5+/5, Good is 4.0-4.4, Needs improvement is 3.5-3.9, and Critical attention is below 3.5. Compare technician scores to team averages for relative performance.