Project Completion Review

Capture comprehensive client feedback at project completion with this professional review form. Designed for agencies, consultancies, and freelancers, it covers all critical project dimensions: deliverable quality, timeline adherence, budget management, communication effectiveness, and overall value delivered. The form includes NPS for relationship health and detailed ratings to identify specific strengths and improvement areas for future engagements.

B2B & Professional

Try the Form

Help us improve our services with your feedback
 
Timeline & Milestones
Strongly Disagree
Strongly Agree
 
Communication & Collaboration
Poor Fair Good Very Good Excellent
Responsiveness*
Timely replies to questions
Clarity*
Clear and understandable communication
Proactive Updates
Kept you informed without asking
Listening*
Understood your needs
Availability
Easy to reach when needed
0/5
Team & Expertise
0/5
0/5
 
 
 
Value Delivered
Strongly Disagree
Strongly Agree
Strongly Disagree
Strongly Agree
 
What We Did Well
Areas for Improvement
Future Partnership
Not at all likely
Extremely likely
Final Thoughts
Feedback Summary
 
 
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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
export function projectFeedback(form: FormTs) {
// Project Completion Review - B2B/Agency project feedback
// Demonstrates: MatrixQuestion, StarRating, RatingScale, EmojiRating, SuggestionChips, Pages, dynamic labels
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Project Completion Review',
computedValue: () => 'Help us improve our services with your feedback',
customStyles: {
backgroundColor: '#059669',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// MULTI-PAGE STRUCTURE
// ============================================
const pages = form.addPages('projectPages', {
heightMode: 'current-page'
});
 
// ============================================
// PAGE 1: Project Overview & Deliverables
// ============================================
const page1 = pages.addPage('deliverables');
 
page1.addRow(row => {
row.addTextPanel('page1Title', {
label: 'Page 1 of 3: Project & Deliverables',
customStyles: {
backgroundColor: '#d1fae5',
padding: '12px 16px',
borderRadius: '8px',
fontWeight: 'bold'
}
});
});
 
// Project info
const projectInfo = page1.addSubform('projectInfo', {
title: 'Project Information',
customStyles: { padding: '16px', borderRadius: '8px', border: '1px solid #e2e8f0' }
});
 
projectInfo.addRow(row => {
row.addTextbox('projectName', {
label: 'Project Name',
placeholder: 'e.g., Website Redesign, Marketing Campaign',
isRequired: true
}, '1fr');
row.addDropdown('projectType', {
label: 'Project Type',
options: [
{ id: 'development', name: 'Development/Engineering' },
{ id: 'design', name: 'Design/Creative' },
{ id: 'marketing', name: 'Marketing/Campaign' },
{ id: 'consulting', name: 'Consulting/Advisory' },
{ id: 'implementation', name: 'Implementation/Setup' },
{ id: 'strategy', name: 'Strategy/Planning' },
{ id: 'research', name: 'Research/Analysis' },
{ id: 'other', name: 'Other' }
],
placeholder: 'Select type'
}, '1fr');
});
 
// Overall impression
const overallSection = page1.addSubform('overallSection', {
title: 'Overall Satisfaction',
customStyles: () => {
const rating = overallSection.starRating('overallSatisfaction')?.value();
if (rating !== null && rating !== undefined) {
if (rating >= 4) return { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px' };
if (rating >= 3) return { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' };
return { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px' };
}
return { padding: '16px', borderRadius: '8px', border: '1px dashed #059669' };
}
});
 
overallSection.addRow(row => {
row.addStarRating('overallSatisfaction', {
label: 'Overall project satisfaction',
maxStars: 5,
size: 'xl',
alignment: 'center',
showConfettiOnMax: true
});
});
 
overallSection.addRow(row => {
row.addEmojiRating('projectMood', {
label: 'How do you feel about the completed project?',
preset: 'satisfaction',
size: 'lg',
showLabels: true,
alignment: 'center'
});
});
 
// Deliverables rating
const deliverablesSection = page1.addSubform('deliverablesSection', {
title: 'Deliverable Quality',
isVisible: () => overallSection.starRating('overallSatisfaction')?.value() !== null
});
 
deliverablesSection.addRow(row => {
row.addMatrixQuestion('deliverableRatings', {
label: 'Rate the quality of deliverables:',
rows: [
{ id: 'quality', label: 'Overall Quality', description: 'Meets professional standards', isRequired: true },
{ id: 'requirements', label: 'Requirements Met', description: 'Matched what was agreed', isRequired: true },
{ id: 'attention', label: 'Attention to Detail', description: 'Thoroughness and polish', isRequired: false },
{ id: 'innovation', label: 'Innovation/Creativity', description: 'Fresh ideas and solutions', isRequired: false },
{ id: 'documentation', label: 'Documentation', description: 'Clarity of handover materials', isRequired: false }
],
columns: [
{ id: 'na', label: 'N/A' },
{ 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
});
});
 
page1.addRow(row => {
row.addEmpty('1fr');
row.addButton('next1', {
label: 'Next: Process & Communication',
onClick: () => pages.goToPage('process')
});
});
 
// ============================================
// PAGE 2: Process & Communication
// ============================================
const page2 = pages.addPage('process');
 
page2.addRow(row => {
row.addTextPanel('page2Title', {
label: 'Page 2 of 3: Process & Communication',
customStyles: {
backgroundColor: '#d1fae5',
padding: '12px 16px',
borderRadius: '8px',
fontWeight: 'bold'
}
});
});
 
// Timeline section
const timelineSection = page2.addSubform('timelineSection', {
title: 'Timeline & Milestones',
customStyles: { padding: '16px', borderRadius: '8px', border: '1px solid #e2e8f0' }
});
 
timelineSection.addRow(row => {
row.addRatingScale('onTime', {
preset: 'likert-5',
label: 'The project was delivered on time',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
alignment: 'center'
});
});
 
timelineSection.addRow(row => {
row.addRadioButton('timelineActual', {
label: 'How did the actual timeline compare to the estimate?',
options: [
{ id: 'early', name: 'Delivered early' },
{ id: 'on-time', name: 'On schedule' },
{ id: 'slightly-late', name: 'Slightly delayed (acceptable)' },
{ id: 'late', name: 'Significantly delayed' }
],
orientation: 'horizontal'
});
});
 
// Delays follow-up
timelineSection.addRow(row => {
row.addRadioButton('delayHandling', {
label: 'How well were delays communicated and managed?',
options: [
{ id: 'excellent', name: 'Proactively communicated, well managed' },
{ id: 'acceptable', name: 'Communicated when asked, reasonably managed' },
{ id: 'poor', name: 'Poor communication about delays' }
],
orientation: 'vertical',
isVisible: () => {
const timeline = timelineSection.radioButton('timelineActual')?.value();
return timeline === 'slightly-late' || timeline === 'late';
}
});
});
 
// Communication section
const commSection = page2.addSubform('commSection', {
title: 'Communication & Collaboration'
});
 
commSection.addRow(row => {
row.addMatrixQuestion('communicationRatings', {
label: 'Rate communication throughout the project:',
rows: [
{ id: 'responsiveness', label: 'Responsiveness', description: 'Timely replies to questions', isRequired: true },
{ id: 'clarity', label: 'Clarity', description: 'Clear and understandable communication', isRequired: true },
{ id: 'proactive', label: 'Proactive Updates', description: 'Kept you informed without asking', isRequired: false },
{ id: 'listening', label: 'Listening', description: 'Understood your needs', isRequired: true },
{ id: 'availability', label: 'Availability', description: 'Easy to reach when needed', isRequired: false }
],
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
});
});
 
commSection.addRow(row => {
row.addStarRating('overallCommunication', {
label: 'Overall communication rating',
maxStars: 5,
size: 'lg',
alignment: 'center'
});
});
 
// Team section
const teamSection = page2.addSubform('teamSection', {
title: 'Team & Expertise'
});
 
teamSection.addRow(row => {
row.addStarRating('teamExpertise', {
label: 'Team knowledge and expertise',
maxStars: 5,
size: 'lg',
alignment: 'center'
}, '1fr');
row.addStarRating('teamProfessionalism', {
label: 'Team professionalism',
maxStars: 5,
size: 'lg',
alignment: 'center'
}, '1fr');
});
 
page2.addRow(row => {
row.addButton('back2', {
label: 'Back',
onClick: () => pages.goToPage('deliverables')
});
row.addEmpty('1fr');
row.addButton('next2', {
label: 'Next: Value & Future',
onClick: () => pages.goToPage('value')
});
});
 
// ============================================
// PAGE 3: Value & Future Partnership
// ============================================
const page3 = pages.addPage('value');
 
page3.addRow(row => {
row.addTextPanel('page3Title', {
label: 'Page 3 of 3: Value & Future Partnership',
customStyles: {
backgroundColor: '#d1fae5',
padding: '12px 16px',
borderRadius: '8px',
fontWeight: 'bold'
}
});
});
 
// Value section
const valueSection = page3.addSubform('valueSection', {
title: 'Value Delivered',
customStyles: { padding: '16px', borderRadius: '8px', border: '1px solid #e2e8f0' }
});
 
valueSection.addRow(row => {
row.addRatingScale('valueForInvestment', {
preset: 'likert-5',
label: 'The project delivered good value for the investment',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
alignment: 'center'
});
});
 
valueSection.addRow(row => {
row.addRatingScale('metGoals', {
preset: 'likert-5',
label: 'The project met our business goals/objectives',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
alignment: 'center'
});
});
 
valueSection.addRow(row => {
row.addRadioButton('budgetAdherence', {
label: 'How did the final cost compare to the estimate?',
options: [
{ id: 'under', name: 'Under budget' },
{ id: 'on', name: 'On budget' },
{ id: 'slightly-over', name: 'Slightly over (10-20%)' },
{ id: 'over', name: 'Significantly over (>20%)' }
],
orientation: 'horizontal'
});
});
 
// Strengths and improvements
const strengthsSection = page3.addSubform('strengthsSection', {
title: 'What We Did Well'
});
 
strengthsSection.addRow(row => {
row.addSuggestionChips('projectStrengths', {
label: 'What stood out positively? (select up to 4)',
suggestions: [
{ id: 'quality', name: 'Quality of work' },
{ id: 'communication', name: 'Communication' },
{ id: 'timeline', name: 'Met deadlines' },
{ id: 'flexibility', name: 'Flexibility' },
{ id: 'expertise', name: 'Expertise' },
{ id: 'creative', name: 'Creative solutions' },
{ id: 'responsive', name: 'Responsiveness' },
{ id: 'proactive', name: 'Proactive approach' },
{ id: 'budget', name: 'Budget management' },
{ id: 'professional', name: 'Professionalism' }
],
max: 4,
alignment: 'center'
});
});
 
const improvementsSection = page3.addSubform('improvementsSection', {
title: 'Areas for Improvement',
isVisible: () => {
const overall = overallSection.starRating('overallSatisfaction')?.value();
return overall !== null && overall !== undefined && overall <= 4;
}
});
 
improvementsSection.addRow(row => {
row.addSuggestionChips('improvementAreas', {
label: 'What could we improve? (select all that apply)',
suggestions: [
{ id: 'communication', name: 'Communication' },
{ id: 'timeline', name: 'Timeline management' },
{ id: 'scope', name: 'Scope management' },
{ id: 'quality', name: 'Quality control' },
{ id: 'documentation', name: 'Documentation' },
{ id: 'responsiveness', name: 'Responsiveness' },
{ id: 'budget', name: 'Budget adherence' },
{ id: 'expectations', name: 'Setting expectations' }
],
alignment: 'center'
});
});
 
// NPS and future work
const futureSection = page3.addSubform('futureSection', {
title: 'Future Partnership',
customStyles: () => {
const nps = futureSection.ratingScale('projectNPS')?.npsCategory();
if (nps === 'promoter') return { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px' };
if (nps === 'passive') return { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' };
if (nps === 'detractor') return { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px' };
return { padding: '16px', borderRadius: '8px', border: '1px dashed #cbd5e1' };
}
});
 
futureSection.addRow(row => {
row.addRatingScale('projectNPS', {
preset: 'nps',
label: 'How likely are you to recommend us to colleagues?',
showSegmentColors: true,
showCategoryLabel: true,
showConfettiOnPromoter: true,
alignment: 'center'
});
});
 
futureSection.addRow(row => {
row.addThumbRating('workAgain', {
label: 'Would you work with us again on future projects?',
showLabels: true,
upLabel: 'Yes, definitely',
downLabel: 'Probably not',
alignment: 'center',
size: 'lg'
});
});
 
// Testimonial permission
const testimonialSection = page3.addSubform('testimonialSection', {
isVisible: () => {
const nps = futureSection.ratingScale('projectNPS')?.npsCategory();
return nps === 'promoter';
},
customStyles: { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px', marginTop: '12px' }
});
 
testimonialSection.addRow(row => {
row.addCheckbox('testimonialPermission', {
label: 'You may use my feedback as a testimonial (with approval)'
});
});
 
testimonialSection.addRow(row => {
row.addTextarea('testimonialQuote', {
label: 'Would you like to share a brief testimonial?',
placeholder: 'Share your experience in a few sentences...',
rows: 2,
autoExpand: true,
isVisible: () => testimonialSection.checkbox('testimonialPermission')?.value() === true
});
});
 
// Final comments
const finalSection = page3.addSubform('finalSection', {
title: 'Final Thoughts'
});
 
finalSection.addSpacer();
 
finalSection.addRow(row => {
row.addTextarea('finalComments', {
label: 'Any other feedback or suggestions?',
placeholder: 'Share anything else about your experience...',
rows: 3,
autoExpand: true
});
});
 
// Summary
const summarySection = page3.addSubform('summarySection', {
title: 'Feedback Summary'
});
 
summarySection.addRow(row => {
row.addTextPanel('summary', {
computedValue: () => {
const projectName = projectInfo.textbox('projectName')?.value();
const overall = overallSection.starRating('overallSatisfaction')?.value();
const communication = commSection.starRating('overallCommunication')?.value();
const nps = futureSection.ratingScale('projectNPS')?.npsCategory();
const workAgain = futureSection.thumbRating('workAgain')?.value();
const timeline = timelineSection.radioButton('timelineActual')?.value();
const budget = valueSection.radioButton('budgetAdherence')?.value();
const strengths = strengthsSection.suggestionChips('projectStrengths')?.value() || [];
 
if (!overall) return '';
 
const timelineLabels: Record<string, string> = {
'early': '✅ Early',
'on-time': '✅ On time',
'slightly-late': '⚠️ Slightly late',
'late': '❌ Delayed'
};
 
const budgetLabels: Record<string, string> = {
'under': '✅ Under',
'on': '✅ On budget',
'slightly-over': '⚠️ Slightly over',
'over': '❌ Over budget'
};
 
let emoji = overall >= 4 ? '🎉' : overall >= 3 ? '🤔' : '😟';
 
let summary = `${emoji} PROJECT REVIEW\n`;
summary += `${'═'.repeat(28)}\n\n`;
 
if (projectName) {
summary += `Project: ${projectName}\n`;
}
 
summary += `\nOverall: ${'★'.repeat(overall)}${'☆'.repeat(5 - overall)} (${overall}/5)\n`;
 
if (communication) {
summary += `Communication: ${'★'.repeat(communication)}${'☆'.repeat(5 - communication)}\n`;
}
 
if (timeline) {
summary += `\nTimeline: ${timelineLabels[timeline]}`;
}
 
if (budget) {
summary += `\nBudget: ${budgetLabels[budget]}`;
}
 
if (strengths.length > 0) {
summary += `\n\n✨ Strengths: ${strengths.length} highlighted`;
}
 
if (nps) {
summary += `\n\nNPS: ${nps.charAt(0).toUpperCase() + nps.slice(1)}`;
}
 
if (workAgain) {
summary += `\nWork again: ${workAgain === 'up' ? '👍 Yes' : '👎 No'}`;
}
 
return summary;
},
customStyles: () => {
const nps = futureSection.ratingScale('projectNPS')?.npsCategory();
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '13px'
};
 
if (nps === 'promoter') {
return { ...baseStyles, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
} else if (nps === 'passive') {
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
} else if (nps === 'detractor') {
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
return { ...baseStyles, backgroundColor: '#ecfdf5', borderLeft: '4px solid #059669' };
}
});
});
 
page3.addRow(row => {
row.addButton('back3', {
label: 'Back',
onClick: () => pages.goToPage('process')
});
row.addEmpty('1fr');
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Review',
isVisible: () => {
const currentPage = pages.currentPageIndex();
return currentPage === 2; // Show only on last page (0-indexed)
}
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Feedback!',
message: 'Your detailed review helps us continuously improve our services. We truly value our partnership and look forward to working together on future projects.'
});
}
 

Frequently Asked Questions

When should I send project completion feedback?

Send within 1 week of project delivery, while the experience is fresh. For long projects, consider mid-project check-ins as well. Avoid sending during billing disputes or before final deliverables are approved.

How do I handle negative project feedback?

Respond promptly and professionally. Schedule a call to discuss concerns, document learnings for your team, and consider what compensation or remedy is appropriate. Turn criticism into a learning opportunity.

Can I use this for internal projects?

Yes, with minor modifications. Replace 'client' references with stakeholder terminology and adjust the value/pricing section. Internal project reviews help improve cross-functional collaboration.

How do I request testimonials based on this feedback?

For promoter scores (9-10 NPS), follow up with a testimonial request referencing their positive feedback. Quote specific comments with permission, or ask them to write a brief testimonial based on their ratings.

What if the client contact changed during the project?

Consider sending to both the original and final contacts if possible, or to whoever has the most comprehensive view. Note in the survey intro that feedback on any project phase is valuable.

How should I share results with my team?

Share positive feedback publicly to celebrate wins. Discuss improvement areas in private team retrospectives. Use scores to benchmark across projects, clients, and team members over time.