Hybrid Event Feedback Survey

This hybrid event feedback survey helps event organizers understand how their event performed across both in-person and virtual formats. The form dynamically adapts questions based on how attendees participated, comparing content delivery, networking opportunities, technical quality, and overall engagement. Use insights to optimize future hybrid events and ensure parity of experience across attendance modes.

Events & Conferences

Try the Form

Help us improve both in-person and virtual experiences
Your Attendance
 
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
export function hybridEventFeedback(form: FormTs) {
// Hybrid Event Feedback Survey - Compare in-person vs virtual experiences
// Demonstrates: Conditional sections by attendance type, MatrixQuestion, StarRating, RatingScale, EmojiRating, Slider, ThumbRating, SuggestionChips
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Hybrid Event Feedback',
computedValue: () => 'Help us improve both in-person and virtual experiences',
customStyles: {
backgroundColor: '#8b5cf6',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Attendance Information
// ============================================
const attendanceSection = form.addSubform('attendance', {
title: 'Your Attendance'
});
 
attendanceSection.addRow(row => {
row.addRadioButton('attendanceType', {
label: 'How did you attend the event?',
options: [
{ id: 'in-person', name: 'In-person' },
{ id: 'virtual', name: 'Virtual/Online' },
{ id: 'both', name: 'Both (hybrid mix)' }
],
orientation: 'horizontal',
isRequired: true
});
});
 
attendanceSection.addRow(row => {
row.addDropdown('daysAttended', {
label: 'How many days did you attend?',
options: [
{ id: '1', name: '1 day' },
{ id: '2', name: '2 days' },
{ id: '3', name: '3 days' },
{ id: '4+', name: '4 or more days' }
],
placeholder: 'Select days'
}, '1fr');
row.addDropdown('sessionsAttended', {
label: 'Approximately how many sessions?',
options: [
{ id: '1-3', name: '1-3 sessions' },
{ id: '4-6', name: '4-6 sessions' },
{ id: '7-10', name: '7-10 sessions' },
{ id: '10+', name: 'More than 10 sessions' }
],
placeholder: 'Select range'
}, '1fr');
});
 
// ============================================
// SECTION 2A: In-Person Experience (visible for in-person or both)
// ============================================
const inPersonSection = form.addSubform('inPerson', {
title: 'In-Person Experience',
isVisible: () => {
const type = attendanceSection.radioButton('attendanceType')?.value();
return type === 'in-person' || type === 'both';
},
customStyles: {
backgroundColor: '#f0fdf4',
padding: '16px',
borderRadius: '8px',
borderLeft: '4px solid #22c55e'
}
});
 
inPersonSection.addRow(row => {
row.addTextPanel('inPersonLabel', {
computedValue: () => 'Rate your on-site experience',
customStyles: { fontWeight: 'bold', marginBottom: '12px' }
});
});
 
inPersonSection.addRow(row => {
row.addMatrixQuestion('inPersonMatrix', {
label: 'Rate each aspect of the in-person experience',
rows: [
{ id: 'venue', label: 'Venue & Facilities', description: 'Location, rooms, accessibility', isRequired: true },
{ id: 'registration', label: 'Check-in Process', description: 'Registration, badges, welcome', isRequired: true },
{ id: 'networking', label: 'Networking Opportunities', description: 'Breaks, social events, meetups', isRequired: true },
{ id: 'catering', label: 'Food & Refreshments', description: 'Quality and variety', isRequired: false },
{ id: 'signage', label: 'Wayfinding & Signage', description: 'Easy to navigate', 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
});
});
 
inPersonSection.addRow(row => {
row.addStarRating('inPersonOverall', {
label: 'Overall in-person experience rating',
maxStars: 5,
size: 'lg',
alignment: 'center'
});
});
 
// ============================================
// SECTION 2B: Virtual Experience (visible for virtual or both)
// ============================================
const virtualSection = form.addSubform('virtual', {
title: 'Virtual Experience',
isVisible: () => {
const type = attendanceSection.radioButton('attendanceType')?.value();
return type === 'virtual' || type === 'both';
},
customStyles: {
backgroundColor: '#eff6ff',
padding: '16px',
borderRadius: '8px',
borderLeft: '4px solid #3b82f6'
}
});
 
virtualSection.addRow(row => {
row.addTextPanel('virtualLabel', {
computedValue: () => 'Rate your online experience',
customStyles: { fontWeight: 'bold', marginBottom: '12px' }
});
});
 
virtualSection.addRow(row => {
row.addMatrixQuestion('virtualMatrix', {
label: 'Rate each aspect of the virtual experience',
rows: [
{ id: 'platform', label: 'Event Platform', description: 'Ease of use, navigation', isRequired: true },
{ id: 'stream', label: 'Stream Quality', description: 'Video and audio quality', isRequired: true },
{ id: 'interaction', label: 'Interactive Features', description: 'Chat, Q&A, polls', isRequired: true },
{ id: 'networking', label: 'Virtual Networking', description: 'Meetups, 1:1 video chats', isRequired: false },
{ id: 'support', label: 'Technical Support', description: 'Help availability', 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
});
});
 
virtualSection.addRow(row => {
row.addSlider('connectionIssues', {
label: 'How often did you experience technical issues?',
min: 0,
max: 10,
step: 1,
defaultValue: 2,
showValue: true
});
});
 
virtualSection.addRow(row => {
row.addStarRating('virtualOverall', {
label: 'Overall virtual experience rating',
maxStars: 5,
size: 'lg',
alignment: 'center'
});
});
 
// ============================================
// SECTION 3: Format Comparison (for hybrid attendees)
// ============================================
const comparisonSection = form.addSubform('comparison', {
title: 'Format Comparison',
isVisible: () => attendanceSection.radioButton('attendanceType')?.value() === 'both',
customStyles: {
backgroundColor: '#faf5ff',
padding: '16px',
borderRadius: '8px',
borderLeft: '4px solid #8b5cf6'
}
});
 
comparisonSection.addRow(row => {
row.addRadioButton('preferredFormat', {
label: 'Which format did you prefer overall?',
options: [
{ id: 'in-person', name: 'Strongly prefer in-person' },
{ id: 'slight-in-person', name: 'Slightly prefer in-person' },
{ id: 'equal', name: 'Both equally good' },
{ id: 'slight-virtual', name: 'Slightly prefer virtual' },
{ id: 'virtual', name: 'Strongly prefer virtual' }
],
orientation: 'vertical'
});
});
 
comparisonSection.addRow(row => {
row.addCheckboxList('inPersonBetter', {
label: 'What was better in-person?',
options: [
{ id: 'networking', name: 'Networking' },
{ id: 'energy', name: 'Event energy/atmosphere' },
{ id: 'focus', name: 'Ability to focus' },
{ id: 'speakers', name: 'Speaker interaction' },
{ id: 'exhibits', name: 'Exhibits/demos' }
],
orientation: 'vertical'
}, '1fr');
row.addCheckboxList('virtualBetter', {
label: 'What was better virtually?',
options: [
{ id: 'convenience', name: 'Convenience' },
{ id: 'access', name: 'Content access' },
{ id: 'replay', name: 'Replay availability' },
{ id: 'cost', name: 'Cost savings' },
{ id: 'multitask', name: 'Ability to multitask' }
],
orientation: 'vertical'
}, '1fr');
});
 
// ============================================
// SECTION 4: Content Quality
// ============================================
const contentSection = form.addSubform('content', {
title: 'Content Quality',
isVisible: () => attendanceSection.radioButton('attendanceType')?.value() !== null
});
 
contentSection.addRow(row => {
row.addStarRating('contentQuality', {
label: 'Overall quality of session content',
maxStars: 5,
size: 'lg',
alignment: 'center'
}, '1fr');
row.addStarRating('speakerQuality', {
label: 'Quality of speakers/presenters',
maxStars: 5,
size: 'lg',
alignment: 'center'
}, '1fr');
});
 
contentSection.addRow(row => {
row.addEmojiRating('contentRelevance', {
label: 'How relevant was the content to your needs?',
preset: 'satisfaction',
size: 'lg',
showLabels: true,
alignment: 'center'
});
});
 
contentSection.addRow(row => {
row.addSuggestionChips('topicsInterest', {
label: 'Which topics were most valuable? (Select up to 3)',
suggestions: [
{ id: 'keynotes', name: 'Keynotes' },
{ id: 'workshops', name: 'Workshops' },
{ id: 'panels', name: 'Panel Discussions' },
{ id: 'demos', name: 'Product Demos' },
{ id: 'networking', name: 'Networking Sessions' },
{ id: 'qa', name: 'Q&A Sessions' },
{ id: 'breakouts', name: 'Breakout Sessions' },
{ id: 'poster', name: 'Poster Sessions' }
],
max: 3,
alignment: 'center'
});
});
 
// ============================================
// SECTION 5: Engagement & Value
// ============================================
const engagementSection = form.addSubform('engagement', {
title: 'Engagement & Value',
isVisible: () => attendanceSection.radioButton('attendanceType')?.value() !== null
});
 
engagementSection.addRow(row => {
row.addSlider('engagementLevel', {
label: 'How engaged did you feel throughout the event?',
min: 1,
max: 10,
step: 1,
defaultValue: 5,
showValue: true
});
});
 
engagementSection.addRow(row => {
row.addThumbRating('metExpectations', {
label: 'Did the event meet your expectations?',
showLabels: true,
upLabel: 'Yes, met or exceeded',
downLabel: 'No, fell short',
size: 'lg',
alignment: 'center'
});
});
 
engagementSection.addRow(row => {
row.addRadioButton('valueForMoney', {
label: 'How would you rate the value for the ticket price?',
options: [
{ id: 'excellent', name: 'Excellent value' },
{ id: 'good', name: 'Good value' },
{ id: 'fair', name: 'Fair value' },
{ id: 'poor', name: 'Poor value' },
{ id: 'free', name: 'Event was free' }
],
orientation: 'horizontal'
});
});
 
// ============================================
// SECTION 6: Future Preferences
// ============================================
const futureSection = form.addSubform('future', {
title: 'Future Events',
isVisible: () => attendanceSection.radioButton('attendanceType')?.value() !== null
});
 
futureSection.addRow(row => {
row.addRadioButton('futureFormat', {
label: 'For future events, which format would you prefer?',
options: [
{ id: 'in-person', name: 'In-person only' },
{ id: 'virtual', name: 'Virtual only' },
{ id: 'hybrid', name: 'Hybrid (both options)' },
{ id: 'depends', name: 'Depends on the event' }
],
orientation: 'vertical'
});
});
 
futureSection.addRow(row => {
row.addRatingScale('returnLikelihood', {
preset: 'nps',
label: 'How likely are you to attend next year\'s event?',
showSegmentColors: true,
showCategoryLabel: true,
showConfettiOnPromoter: true,
alignment: 'center'
});
});
 
// ============================================
// SECTION 7: Overall Rating
// ============================================
const overallSection = form.addSubform('overall', {
title: 'Overall Experience',
isVisible: () => attendanceSection.radioButton('attendanceType')?.value() !== null,
customStyles: () => {
const nps = overallSection.ratingScale('eventNps')?.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' };
}
});
 
overallSection.addRow(row => {
row.addStarRating('overallRating', {
label: 'Overall event experience',
maxStars: 5,
size: 'xl',
alignment: 'center',
showConfettiOnMax: true
});
});
 
overallSection.addRow(row => {
row.addRatingScale('eventNps', {
preset: 'nps',
label: 'How likely are you to recommend this event to a colleague?',
showSegmentColors: true,
showCategoryLabel: true,
alignment: 'center'
});
});
 
overallSection.addSpacer();
 
overallSection.addRow(row => {
row.addTextarea('additionalFeedback', {
label: 'Any suggestions for improving future hybrid events?',
placeholder: 'Share your ideas for making both formats better...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 8: Summary
// ============================================
const summarySection = form.addSubform('summary', {
title: 'Feedback Summary',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const type = attendanceSection.radioButton('attendanceType')?.value();
const overall = overallSection.starRating('overallRating')?.value();
const nps = overallSection.ratingScale('eventNps')?.npsCategory();
const inPersonScore = inPersonSection.starRating('inPersonOverall')?.value();
const virtualScore = virtualSection.starRating('virtualOverall')?.value();
const contentScore = contentSection.starRating('contentQuality')?.value();
const futureFormat = futureSection.radioButton('futureFormat')?.value();
 
if (!overall) return '';
 
const typeLabels: Record<string, string> = {
'in-person': 'In-Person',
'virtual': 'Virtual',
'both': 'Hybrid (Both)'
};
 
const formatLabels: Record<string, string> = {
'in-person': 'In-Person Only',
'virtual': 'Virtual Only',
'hybrid': 'Hybrid',
'depends': 'Event Dependent'
};
 
let summary = `HYBRID EVENT FEEDBACK\n`;
summary += `${'═'.repeat(26)}\n\n`;
summary += `Attendance: ${typeLabels[type || ''] || 'Unknown'}\n`;
summary += `\n${'─'.repeat(26)}\n\n`;
summary += `Overall: ${'★'.repeat(overall)}${'☆'.repeat(5 - overall)} (${overall}/5)\n`;
 
if (inPersonScore) {
summary += `In-Person: ${'★'.repeat(inPersonScore)}${'☆'.repeat(5 - inPersonScore)}\n`;
}
if (virtualScore) {
summary += `Virtual: ${'★'.repeat(virtualScore)}${'☆'.repeat(5 - virtualScore)}\n`;
}
if (contentScore) {
summary += `Content: ${'★'.repeat(contentScore)}${'☆'.repeat(5 - contentScore)}\n`;
}
 
if (nps) {
summary += `\nNPS Status: ${nps.charAt(0).toUpperCase() + nps.slice(1)}\n`;
}
 
if (futureFormat) {
summary += `Future Pref: ${formatLabels[futureFormat]}`;
}
 
return summary;
},
customStyles: () => {
const nps = overallSection.ratingScale('eventNps')?.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: '#f8fafc', borderLeft: '4px solid #64748b' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Feedback!',
message: 'Your insights help us create better hybrid experiences. We\'re committed to delivering excellent events whether you join us in person or virtually.'
});
}
 

Frequently Asked Questions

How do I ensure fair comparison between in-person and virtual attendees?

Use the same core questions for both groups but add format-specific questions for each. The satisfaction scale should be identical. Consider that virtual attendees may have different expectations - they trade convenience for the in-person energy.

What's the ideal time to send hybrid event surveys?

Send within 24-48 hours of event conclusion while the experience is fresh. For multi-day events, consider a brief daily pulse survey followed by a comprehensive post-event survey.

How can I measure if hybrid parity was achieved?

Compare overall satisfaction scores, NPS, and key metric ratings between in-person and virtual attendees. A gap of more than 0.5 points (on a 5-point scale) suggests one format underperformed. Dig into specific areas like networking and content to find root causes.

What technical aspects should I measure for virtual attendees?

Key metrics include stream quality, platform usability, audio clarity, video smoothness, and interaction tools functionality. Also measure ease of accessing sessions and technical support availability.

How do I use this data to improve future hybrid events?

Analyze which aspects each format excels at and where gaps exist. Common issues include virtual networking feeling disconnected and in-person attendees missing exclusive virtual content. Use insights to create format-specific enhancements while maintaining experience parity.