Black Friday Sale Experience Survey

Major sale events like Black Friday test your e-commerce infrastructure and customer experience. This specialized feedback form captures insights on deal quality and value perception, website performance under load, checkout friction, overall shopping satisfaction, and suggestions for future events. Use it to benchmark against previous sales and identify improvements.

Retail & E-commerce

Try the Form

Thank you for shopping with us! Share your Black Friday experience to help us improve future sales.
Your Shopping Activity
 
Comparison & Overall
 
Not at all likely
Extremely likely
 
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
export function blackFridayFeedbackSurvey(form: FormTs) {
// Black Friday Sale Experience Survey
// Demonstrates: EmojiRating, StarRating, RatingScale, MatrixQuestion, Slider, dynamic labels, conditional sections
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: '🛍️ Black Friday Feedback',
computedValue: () => "Thank you for shopping with us! Share your Black Friday experience to help us improve future sales.",
customStyles: {
background: 'linear-gradient(135deg, #1a1a2e 0%, #16213e 100%)',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Purchase Status
// ============================================
const purchaseSection = form.addSubform('purchaseSection', {
title: 'Your Shopping Activity'
});
 
purchaseSection.addRow(row => {
row.addRadioButton('purchaseStatus', {
label: 'Did you make a purchase during the Black Friday sale?',
options: [
{ id: 'purchased', name: 'Yes, I bought something' },
{ id: 'browsed', name: 'I browsed but didn\'t buy' },
{ id: 'returned', name: 'I returned to buy something I saw earlier' }
],
isRequired: true,
orientation: 'vertical'
});
});
 
// Follow-up for browsers
purchaseSection.addSpacer();
purchaseSection.addRow(row => {
row.addCheckboxList('whyNotBuy', {
label: 'What prevented you from purchasing?',
options: [
{ id: 'prices', name: 'Prices weren\'t low enough' },
{ id: 'out-of-stock', name: 'Items I wanted were out of stock' },
{ id: 'website-issues', name: 'Website problems/slow loading' },
{ id: 'found-elsewhere', name: 'Found better deals elsewhere' },
{ id: 'not-ready', name: 'Not ready to buy yet' },
{ id: 'budget', name: 'Budget constraints' }
],
orientation: 'vertical',
isVisible: () => purchaseSection.radioButton('purchaseStatus')?.value() === 'browsed'
});
});
 
// Spend amount for buyers
purchaseSection.addRow(row => {
row.addRadioButton('spendAmount', {
label: 'Approximately how much did you spend?',
options: [
{ id: 'under-50', name: 'Under $50' },
{ id: '50-100', name: '$50 - $100' },
{ id: '100-250', name: '$100 - $250' },
{ id: '250-500', name: '$250 - $500' },
{ id: 'over-500', name: 'Over $500' }
],
orientation: 'horizontal',
isVisible: () => {
const status = purchaseSection.radioButton('purchaseStatus')?.value();
return status === 'purchased' || status === 'returned';
}
});
});
 
// ============================================
// SECTION 2: Deal Quality Rating
// ============================================
const dealsSection = form.addSubform('dealsSection', {
title: 'Deals & Discounts',
isVisible: () => purchaseSection.radioButton('purchaseStatus')?.value() !== null,
customStyles: () => {
const rating = dealsSection.starRating('dealsRating')?.value();
if (rating && rating >= 4) return { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px' };
if (rating && rating <= 2) return { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px' };
return { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' };
}
});
 
dealsSection.addRow(row => {
row.addStarRating('dealsRating', {
label: 'How would you rate the quality of our Black Friday deals?',
maxStars: 5,
size: 'lg',
alignment: 'center'
});
});
 
dealsSection.addSpacer({ height: '16px' });
 
dealsSection.addRow(row => {
row.addMatrixQuestion('dealsMatrix', {
label: 'Rate these aspects of our deals:',
rows: [
{ id: 'discount-depth', label: 'Discount amounts', isRequired: true },
{ id: 'variety', label: 'Variety of products on sale', isRequired: true },
{ id: 'availability', label: 'Stock availability', isRequired: true },
{ id: 'clarity', label: 'Clear pricing/discount info', isRequired: false }
],
columns: [
{ id: 'excellent', label: 'Excellent' },
{ id: 'good', label: 'Good' },
{ id: 'average', label: 'Average' },
{ id: 'poor', label: 'Poor' }
],
striped: true,
fullWidth: true
});
});
 
dealsSection.addSpacer();
dealsSection.addRow(row => {
row.addSlider('valuePerception', {
label: 'How much value did you feel you got compared to regular prices?',
min: 0,
max: 100,
step: 10,
showValue: true,
unit: '%',
defaultValue: 50
});
});
 
// ============================================
// SECTION 3: Website Experience
// ============================================
const websiteSection = form.addSubform('websiteSection', {
title: 'Website Experience',
isVisible: () => purchaseSection.radioButton('purchaseStatus')?.value() !== null
});
 
websiteSection.addRow(row => {
row.addEmojiRating('siteExperience', {
label: 'How was the website experience during the sale?',
preset: 'custom',
emojis: [
{ id: 'terrible', emoji: '💥', label: 'Crashed/broken' },
{ id: 'slow', emoji: '🐌', label: 'Very slow' },
{ id: 'okay', emoji: '😐', label: 'Okay' },
{ id: 'good', emoji: '👍', label: 'Good' },
{ id: 'smooth', emoji: '⚡', label: 'Lightning fast' }
],
size: 'lg',
showLabels: true,
alignment: 'center'
});
});
 
websiteSection.addSpacer({ height: '16px' });
 
websiteSection.addRow(row => {
row.addCheckboxList('technicalIssues', {
label: 'Did you experience any technical issues?',
options: [
{ id: 'none', name: 'No issues' },
{ id: 'slow-loading', name: 'Slow page loading' },
{ id: 'crashes', name: 'Site crashes/errors' },
{ id: 'cart-issues', name: 'Shopping cart problems' },
{ id: 'checkout-errors', name: 'Checkout errors' },
{ id: 'payment-failed', name: 'Payment failures' },
{ id: 'mobile-issues', name: 'Mobile site issues' }
],
orientation: 'vertical'
});
});
 
// ============================================
// SECTION 4: Checkout Experience (Buyers only)
// ============================================
const checkoutSection = form.addSubform('checkoutSection', {
title: 'Checkout Experience',
isVisible: () => {
const status = purchaseSection.radioButton('purchaseStatus')?.value();
return status === 'purchased' || status === 'returned';
}
});
 
checkoutSection.addRow(row => {
row.addRatingScale('checkoutEffort', {
preset: 'ces',
label: 'How easy was the checkout process?',
lowLabel: 'Very difficult',
highLabel: 'Very easy',
size: 'md',
alignment: 'center'
});
});
 
checkoutSection.addSpacer({ height: '16px' });
 
checkoutSection.addRow(row => {
row.addThumbRating('deliveryOptions', {
label: 'Were you satisfied with delivery options?',
showLabels: true,
upLabel: 'Yes',
downLabel: 'No',
size: 'lg',
alignment: 'center'
}, '1fr');
row.addThumbRating('paymentOptions', {
label: 'Were your preferred payment methods available?',
showLabels: true,
upLabel: 'Yes',
downLabel: 'No',
size: 'lg',
alignment: 'center'
}, '1fr');
});
 
// ============================================
// SECTION 5: Comparison & Overall
// ============================================
const comparisonSection = form.addSubform('comparisonSection', {
title: 'Comparison & Overall',
isVisible: () => dealsSection.starRating('dealsRating')?.value() !== null
});
 
comparisonSection.addRow(row => {
row.addRadioButton('vsCompetitors', {
label: 'How did our Black Friday sale compare to other retailers?',
options: [
{ id: 'much-better', name: 'Much better' },
{ id: 'somewhat-better', name: 'Somewhat better' },
{ id: 'about-same', name: 'About the same' },
{ id: 'somewhat-worse', name: 'Somewhat worse' },
{ id: 'much-worse', name: 'Much worse' },
{ id: 'didnt-compare', name: "Didn't compare" }
],
orientation: 'vertical'
});
});
 
comparisonSection.addSpacer({ height: '20px' });
 
comparisonSection.addRow(row => {
row.addRatingScale('npsScore', {
preset: 'nps',
label: 'How likely are you to shop with us again during our next sale event?',
showCategoryLabel: true,
showSegmentColors: true,
showConfettiOnPromoter: true,
isRequired: true
});
});
 
// ============================================
// SECTION 6: Suggestions
// ============================================
const suggestionsSection = form.addSubform('suggestionsSection', {
title: 'Your Suggestions',
isVisible: () => comparisonSection.ratingScale('npsScore')?.value() !== null
});
 
suggestionsSection.addRow(row => {
row.addSuggestionChips('wantedCategories', {
label: 'Which product categories would you like to see more deals on?',
suggestions: [
{ id: 'electronics', name: 'Electronics' },
{ id: 'fashion', name: 'Fashion' },
{ id: 'home', name: 'Home & Garden' },
{ id: 'beauty', name: 'Beauty' },
{ id: 'sports', name: 'Sports' },
{ id: 'toys', name: 'Toys' },
{ id: 'appliances', name: 'Appliances' },
{ id: 'food', name: 'Food & Grocery' }
],
max: 3,
alignment: 'center'
});
});
 
suggestionsSection.addSpacer();
suggestionsSection.addRow(row => {
row.addTextarea('improvementIdeas', {
label: () => {
const nps = comparisonSection.ratingScale('npsScore')?.npsCategory();
if (nps === 'promoter') return "What did you love most about this sale?";
if (nps === 'detractor') return "What would make our next sale better?";
return "Any suggestions for our next Black Friday sale?";
},
placeholder: 'Share your ideas...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 7: Summary
// ============================================
const summarySection = form.addSubform('summarySection', {
title: 'Your Feedback Summary',
isVisible: () => {
const dealsRating = dealsSection.starRating('dealsRating')?.value();
const nps = comparisonSection.ratingScale('npsScore')?.value();
return dealsRating !== null && nps !== null;
}
});
 
summarySection.addRow(row => {
row.addTextPanel('summary', {
computedValue: () => {
const purchaseStatus = purchaseSection.radioButton('purchaseStatus')?.value();
const spendAmount = purchaseSection.radioButton('spendAmount')?.value();
const dealsRating = dealsSection.starRating('dealsRating')?.value();
const valuePercent = dealsSection.slider('valuePerception')?.value();
const siteExp = websiteSection.emojiRating('siteExperience')?.value();
const nps = comparisonSection.ratingScale('npsScore')?.value();
const category = comparisonSection.ratingScale('npsScore')?.npsCategory();
const wantedCategories = suggestionsSection.suggestionChips('wantedCategories')?.value() || [];
 
if (!dealsRating || nps === null || nps === undefined) return '';
 
const statusLabels: Record<string, string> = {
'purchased': 'Made a purchase',
'browsed': 'Browsed only',
'returned': 'Returned to buy'
};
 
const spendLabels: Record<string, string> = {
'under-50': 'Under $50',
'50-100': '$50-$100',
'100-250': '$100-$250',
'250-500': '$250-$500',
'over-500': 'Over $500'
};
 
const siteLabels: Record<string, string> = {
'terrible': 'Crashed/broken',
'slow': 'Very slow',
'okay': 'Okay',
'good': 'Good',
'smooth': 'Lightning fast'
};
 
let emoji = '🛍️';
if (category === 'promoter') emoji = '🎉';
else if (category === 'detractor') emoji = '😔';
 
let summary = `${emoji} Black Friday Feedback\n`;
summary += `${'═'.repeat(28)}\n\n`;
summary += `Status: ${statusLabels[purchaseStatus || ''] || 'Unknown'}\n`;
if (spendAmount) summary += `Spent: ${spendLabels[spendAmount]}\n`;
summary += `\n`;
summary += `Deals Rating: ${'★'.repeat(dealsRating)}${'☆'.repeat(5 - dealsRating)}\n`;
if (valuePercent) summary += `Value Perception: ${valuePercent}%\n`;
if (siteExp) summary += `Site Experience: ${siteLabels[siteExp]}\n`;
summary += `\n`;
summary += `Return Likelihood: ${nps}/10 (${category?.charAt(0).toUpperCase()}${category?.slice(1)})\n`;
 
if (wantedCategories.length > 0) {
summary += `\nWanted Categories: ${wantedCategories.join(', ')}`;
}
 
return summary;
},
customStyles: () => {
const category = comparisonSection.ratingScale('npsScore')?.npsCategory();
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
 
if (category === 'promoter') {
return { ...baseStyles, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
} else if (category === 'detractor') {
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback',
isVisible: () => comparisonSection.ratingScale('npsScore')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Feedback!',
message: "Your insights help us make our next sale even better. We appreciate you taking the time to share your Black Friday experience!"
});
}
 

Frequently Asked Questions

When should I send this survey?

Within 24-48 hours after the sale ends. Memories fade quickly, and you want feedback while the experience is fresh. For multi-day events, consider a quick pulse during the event too.

Should I survey people who didn't buy?

Yes, they provide valuable insights on barriers to purchase. The survey includes conditional paths for browsers vs. buyers to capture relevant feedback from both groups.

How do I compare to previous sales?

Track consistent metrics across events: deal satisfaction, checkout ease, overall NPS. Look for year-over-year trends and event-specific improvements.

What about website performance feedback?

The form includes specific questions about site speed, availability, and technical issues. This helps correlate customer feedback with server-side metrics for a complete picture.

Can I use this for other sale events?

Absolutely. Customize the header and branding for Cyber Monday, Prime Day, end-of-season sales, or any promotional event. The structure works for any sale scenario.