Proposal/Pitch Feedback Form

Understanding why you win or lose deals is crucial for sales success. This form collects structured feedback from prospects after proposal submissions, covering decision factors, competitor comparisons, pricing perception, and proposal quality. Whether you won or lost the deal, the insights help improve your value proposition, pricing strategy, and sales process. Essential for B2B sales teams, RFP responses, and enterprise deals.

B2B & Professional

Try the Form

Your honest feedback helps us improve our proposals and better serve future clients.
Deal Outcome
 
Sales Experience
0/5
Poor Fair Good Very Good Excellent
Responsiveness
Product Knowledge
Listening to Needs
Follow-up Quality
Non-Pressuring Approach
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
export function proposalFeedback(form: FormTs) {
// Proposal/Pitch Feedback Form - Win-Loss Analysis for Sales
// Demonstrates: RadioButton, MatrixQuestion, StarRating, Slider, conditional visibility, dynamic labels
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Proposal Feedback',
computedValue: () => 'Your honest feedback helps us improve our proposals and better serve future clients.',
customStyles: {
background: 'linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%)',
color: 'white',
padding: '28px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Deal Outcome
// ============================================
const outcomeSection = form.addSubform('outcome', {
title: 'Deal Outcome'
});
 
outcomeSection.addRow(row => {
row.addRadioButton('dealOutcome', {
label: 'What was the outcome of this proposal?',
options: [
{ id: 'won', name: 'We won the deal (chose our solution)' },
{ id: 'lost-competitor', name: 'Lost to a competitor' },
{ id: 'lost-no-decision', name: 'No decision made / project postponed' },
{ id: 'lost-internal', name: 'Went with internal solution' },
{ id: 'lost-budget', name: 'Project cancelled due to budget' }
],
isRequired: true
});
});
 
outcomeSection.addRow(row => {
row.addTextbox('competitorName', {
label: 'Which competitor did you choose?',
placeholder: 'Competitor name',
isVisible: () => outcomeSection.radioButton('dealOutcome')?.value() === 'lost-competitor',
isRequired: () => outcomeSection.radioButton('dealOutcome')?.value() === 'lost-competitor'
});
});
 
// ============================================
// SECTION 2: Decision Factors
// ============================================
const decisionSection = form.addSubform('decision', {
title: () => {
const outcome = outcomeSection.radioButton('dealOutcome')?.value();
if (outcome === 'won') return 'Why You Chose Us';
return 'Decision Factors';
},
isVisible: () => !!outcomeSection.radioButton('dealOutcome')?.value(),
customStyles: () => {
const outcome = outcomeSection.radioButton('dealOutcome')?.value();
if (outcome === 'won') {
return { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px' };
}
return { backgroundColor: '#f1f5f9', padding: '16px', borderRadius: '8px' };
}
});
 
decisionSection.addRow(row => {
row.addMatrixQuestion('decisionFactors', {
label: () => {
const outcome = outcomeSection.radioButton('dealOutcome')?.value();
if (outcome === 'won') {
return 'How important were these factors in choosing us?';
}
return 'How did we compare on these factors?';
},
rows: [
{ id: 'price', label: 'Price/Value', isRequired: true },
{ id: 'features', label: 'Product Features', isRequired: true },
{ id: 'reputation', label: 'Company Reputation', isRequired: true },
{ id: 'support', label: 'Support & Service', isRequired: true },
{ id: 'innovation', label: 'Innovation/Technology', isRequired: true },
{ id: 'relationship', label: 'Sales Relationship', isRequired: true },
{ id: 'implementation', label: 'Implementation Plan', isRequired: true }
],
columns: () => {
const outcome = outcomeSection.radioButton('dealOutcome')?.value();
if (outcome === 'won') {
return [
{ id: 'not-important', label: 'Not Important' },
{ id: 'somewhat', label: 'Somewhat' },
{ id: 'important', label: 'Important' },
{ id: 'very', label: 'Very Important' },
{ id: 'critical', label: 'Critical' }
];
}
return [
{ id: 'much-worse', label: 'Much Worse' },
{ id: 'worse', label: 'Worse' },
{ id: 'similar', label: 'Similar' },
{ id: 'better', label: 'Better' },
{ id: 'much-better', label: 'Much Better' }
];
},
fullWidth: true
});
});
 
decisionSection.addSpacer();
 
decisionSection.addRow(row => {
row.addRadioButton('primaryFactor', {
label: () => {
const outcome = outcomeSection.radioButton('dealOutcome')?.value();
if (outcome === 'won') {
return 'What was the single most important factor in choosing us?';
}
return 'What was the primary reason for not selecting us?';
},
options: [
{ id: 'price', name: 'Price/Budget' },
{ id: 'features', name: 'Product capabilities' },
{ id: 'experience', name: 'Industry experience' },
{ id: 'support', name: 'Support/Service quality' },
{ id: 'relationship', name: 'Sales relationship/trust' },
{ id: 'timeline', name: 'Implementation timeline' },
{ id: 'references', name: 'References/reputation' },
{ id: 'other', name: 'Other factor' }
],
isRequired: true
});
});
 
decisionSection.addRow(row => {
row.addTextarea('primaryFactorDetails', {
label: 'Please elaborate on this factor:',
placeholder: 'Provide more details about this decision factor...',
rows: 3,
isVisible: () => !!decisionSection.radioButton('primaryFactor')?.value()
});
});
 
// ============================================
// SECTION 3: Pricing Perception
// ============================================
const pricingSection = form.addSubform('pricing', {
title: 'Pricing Perception',
isVisible: () => !!decisionSection.radioButton('primaryFactor')?.value()
});
 
pricingSection.addRow(row => {
row.addRatingScale('pricePerception', {
label: 'How would you rate our pricing relative to the value offered?',
preset: 'custom',
min: 1,
max: 5,
lowLabel: 'Very Overpriced',
highLabel: 'Great Value',
variant: 'segmented',
alignment: 'center'
});
});
 
pricingSection.addRow(row => {
row.addSlider('priceVsCompetitor', {
label: 'How did our pricing compare to competitors?',
min: -50,
max: 50,
step: 5,
unit: '%',
defaultValue: 0,
isVisible: () => outcomeSection.radioButton('dealOutcome')?.value() === 'lost-competitor'
});
});
 
pricingSection.addRow(row => {
row.addTextPanel('priceCompareLabel', {
computedValue: () => {
const diff = pricingSection.slider('priceVsCompetitor')?.value();
if (diff === null || diff === undefined) return '';
if (diff < -20) return 'Much cheaper than competitor';
if (diff < 0) return 'Somewhat cheaper than competitor';
if (diff === 0) return 'Similar pricing to competitor';
if (diff > 20) return 'Much more expensive than competitor';
return 'Somewhat more expensive than competitor';
},
customStyles: {
textAlign: 'center',
padding: '8px',
backgroundColor: '#f8fafc',
borderRadius: '6px',
fontStyle: 'italic'
},
isVisible: () => {
const outcome = outcomeSection.radioButton('dealOutcome')?.value();
return outcome === 'lost-competitor' && pricingSection.slider('priceVsCompetitor')?.value() !== null;
}
});
});
 
// ============================================
// SECTION 4: Proposal Quality
// ============================================
const proposalSection = form.addSubform('proposal', {
title: 'Proposal Quality',
isVisible: () => !!pricingSection.ratingScale('pricePerception')?.value()
});
 
proposalSection.addRow(row => {
row.addMatrixQuestion('proposalRatings', {
label: 'Rate the quality of our proposal:',
rows: [
{ id: 'clarity', label: 'Clarity & Organization' },
{ id: 'understanding', label: 'Understanding of Your Needs' },
{ id: 'solution', label: 'Solution Fit' },
{ id: 'timeline', label: 'Realistic Timeline' },
{ id: 'professionalism', label: 'Overall Professionalism' }
],
columns: [
{ id: '1', label: 'Poor' },
{ id: '2', label: 'Fair' },
{ id: '3', label: 'Good' },
{ id: '4', label: 'Very Good' },
{ id: '5', label: 'Excellent' }
],
fullWidth: true
});
});
 
proposalSection.addRow(row => {
row.addCheckboxList('proposalStrengths', {
label: 'What did you like most about our proposal?',
options: [
{ id: 'thoroughness', name: 'Thoroughness' },
{ id: 'creativity', name: 'Creative approach' },
{ id: 'customization', name: 'Customized to our needs' },
{ id: 'examples', name: 'Relevant examples/case studies' },
{ id: 'presentation', name: 'Presentation quality' },
{ id: 'team', name: 'Proposed team' }
]
}, '1fr');
row.addCheckboxList('proposalWeaknesses', {
label: 'What could be improved?',
options: [
{ id: 'detail', name: 'More detail needed' },
{ id: 'pricing', name: 'Pricing breakdown' },
{ id: 'timeline', name: 'Clearer timeline' },
{ id: 'references', name: 'More references' },
{ id: 'technical', name: 'Technical depth' },
{ id: 'visuals', name: 'Visual presentation' }
]
}, '1fr');
});
 
// ============================================
// SECTION 5: Sales Process
// ============================================
const salesSection = form.addSubform('sales', {
title: 'Sales Experience',
isVisible: () => !!proposalSection.matrixQuestion('proposalRatings')?.value()
});
 
salesSection.addRow(row => {
row.addStarRating('salesRepRating', {
label: 'How would you rate your sales representative?',
maxStars: 5,
size: 'lg',
alignment: 'center'
});
});
 
salesSection.addRow(row => {
row.addMatrixQuestion('salesProcess', {
label: 'Rate the sales process:',
rows: [
{ id: 'responsiveness', label: 'Responsiveness' },
{ id: 'knowledge', label: 'Product Knowledge' },
{ id: 'listening', label: 'Listening to Needs' },
{ id: 'followup', label: 'Follow-up Quality' },
{ id: 'pressure', label: 'Non-Pressuring Approach' }
],
columns: [
{ id: '1', label: 'Poor' },
{ id: '2', label: 'Fair' },
{ id: '3', label: 'Good' },
{ id: '4', label: 'Very Good' },
{ id: '5', label: 'Excellent' }
],
fullWidth: true
});
});
 
// ============================================
// SECTION 6: Future Relationship
// ============================================
const futureSection = form.addSubform('future', {
title: 'Future Relationship',
isVisible: () => !!salesSection.starRating('salesRepRating')?.value()
});
 
futureSection.addRow(row => {
row.addRatingScale('futureConsideration', {
label: () => {
const outcome = outcomeSection.radioButton('dealOutcome')?.value();
if (outcome === 'won') {
return 'How likely are you to work with us again?';
}
return 'How likely are you to consider us for future opportunities?';
},
preset: 'nps',
showSegmentColors: true,
showCategoryLabel: true,
alignment: 'center'
});
});
 
futureSection.addRow(row => {
row.addCheckboxList('futureOpportunities', {
label: 'Would you be interested in hearing from us about:',
options: [
{ id: 'similar', name: 'Similar projects in the future' },
{ id: 'other-products', name: 'Other products/services' },
{ id: 'updates', name: 'New features/capabilities' },
{ id: 'thought-leadership', name: 'Industry insights' },
{ id: 'none', name: 'Prefer not to be contacted' }
],
isVisible: () => {
const score = futureSection.ratingScale('futureConsideration')?.value();
return score !== null && score !== undefined && score >= 5;
}
});
});
 
futureSection.addSpacer();
 
futureSection.addRow(row => {
row.addTextarea('additionalFeedback', {
label: 'Any additional feedback or advice for us?',
placeholder: 'What could we do differently next time? Any other thoughts?',
rows: 4
});
});
 
// ============================================
// SECTION 7: Summary
// ============================================
const summarySection = form.addSubform('summary', {
title: 'Feedback Summary',
isVisible: () => futureSection.ratingScale('futureConsideration')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const outcome = outcomeSection.radioButton('dealOutcome')?.value();
const primaryFactor = decisionSection.radioButton('primaryFactor')?.value();
const pricePerception = pricingSection.ratingScale('pricePerception')?.value();
const salesRep = salesSection.starRating('salesRepRating')?.value();
const futureScore = futureSection.ratingScale('futureConsideration')?.value();
 
if (!outcome) return '';
 
const outcomeLabels: Record<string, string> = {
'won': 'πŸŽ‰ Won',
'lost-competitor': '❌ Lost to Competitor',
'lost-no-decision': '⏸️ No Decision',
'lost-internal': '🏠 Internal Solution',
'lost-budget': 'πŸ’° Budget Cancelled'
};
 
const factorLabels: Record<string, string> = {
'price': 'Price/Budget',
'features': 'Product Capabilities',
'experience': 'Industry Experience',
'support': 'Support Quality',
'relationship': 'Sales Relationship',
'timeline': 'Timeline',
'references': 'References',
'other': 'Other'
};
 
let summary = 'πŸ“Š Win/Loss Analysis Summary\n';
summary += '═'.repeat(30) + '\n\n';
summary += `Outcome: ${outcomeLabels[outcome] || outcome}\n`;
 
if (primaryFactor) {
summary += `Primary Factor: ${factorLabels[primaryFactor] || primaryFactor}\n`;
}
 
if (pricePerception) {
const priceLabel = pricePerception >= 4 ? 'Good Value' :
pricePerception === 3 ? 'Fair' : 'Overpriced';
summary += `Price Perception: ${priceLabel}\n`;
}
 
if (salesRep) {
summary += `\nSales Rep: ${'⭐'.repeat(salesRep)}`;
}
 
if (futureScore !== null && futureScore !== undefined) {
const futureLabel = futureScore >= 9 ? 'Very Likely' :
futureScore >= 7 ? 'Likely' :
futureScore >= 5 ? 'Maybe' : 'Unlikely';
summary += `\nFuture Consideration: ${futureScore}/10 (${futureLabel})`;
}
 
return summary;
},
customStyles: () => {
const outcome = outcomeSection.radioButton('dealOutcome')?.value();
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
 
if (outcome === 'won') {
return { ...baseStyles, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
} else {
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback',
isVisible: () => futureSection.ratingScale('futureConsideration')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: () => {
const outcome = outcomeSection.radioButton('dealOutcome')?.value();
if (outcome === 'won') {
return 'Thank You for Choosing Us!';
}
return 'Thank You for Your Candid Feedback!';
},
message: () => {
const outcome = outcomeSection.radioButton('dealOutcome')?.value();
if (outcome === 'won') {
return 'We\'re excited to work with you! Your feedback helps us understand what we\'re doing right and continue to improve.';
}
return 'Your honest feedback is invaluable in helping us improve our proposals and better serve future clients. We hope to have the opportunity to work together in the future.';
}
});
}
 

Frequently Asked Questions

Should I survey both won and lost deals?

Yes! Won deals reveal your strengths and why customers choose you. Lost deals expose gaps and competitive weaknesses. Both are valuable for different reasons.

How do I get honest feedback on lost deals?

Consider using a neutral third party or making the survey anonymous. Prospects are more honest when they don't fear hurting the salesperson's feelings or damaging the relationship.

When is the best time to send this survey?

Send within 1-2 weeks of the decision while details are fresh. For complex deals, wait until any transition activities are complete but not so long that details are forgotten.

How do I use this data to improve win rates?

Look for patterns: Are you losing on price? Features? Trust? Use insights to adjust pricing strategy, improve product positioning, create better sales materials, or address common objections.

Should salespeople see their individual feedback?

This depends on your culture. Individual feedback helps reps improve but may discourage honest responses. Consider sharing aggregated trends and only specific feedback when actionable.