Tour & Excursion Feedback

Great tours create lasting memories, and guest feedback helps you deliver consistently exceptional experiences. This comprehensive form captures ratings across all tour dimensions: guide performance, activity quality, logistical organization, value for money, and emotional impact. Use the insights to improve guide training, refine itineraries, and identify what makes guests recommend your tours to others.

Hospitality & Travel

Try the Form

Your feedback helps us create unforgettable adventures.
Tour Details
 
 
Overall Experience
0/5
Your Tour Guide
 
Poor Fair Good Very Good Excellent
Knowledge and expertise*
Communication and clarity*
Enthusiasm and energy
Friendliness and approachability
Flexibility and responsiveness
Safety awareness
Tour Components
0/5
0/5
0/5
0/5
3
15
Just right
Value & Expectations
Very poor value
Excellent value
 
Areas for Improvement
Would You Recommend?
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
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
export function tourFeedbackForm(form: FormTs) {
// Tour & Excursion Feedback Form
// Demonstrates: StarRating, EmojiRating, MatrixQuestion, SuggestionChips, RatingScale (NPS), Slider, conditional visibility
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Share Your Tour Experience',
computedValue: () => 'Your feedback helps us create unforgettable adventures.',
customStyles: {
backgroundColor: '#059669',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Tour Information
// ============================================
const tourInfoSection = form.addSubform('tourInfo', {
title: 'Tour Details'
});
 
tourInfoSection.addRow(row => {
row.addTextbox('tourName', {
label: 'Tour or excursion name',
placeholder: 'e.g., Sunset Sailing Adventure',
isRequired: true
}, '1fr');
 
row.addDatepicker('tourDate', {
label: 'Date of tour',
isRequired: true
}, '1fr');
});
 
tourInfoSection.addRow(row => {
row.addDropdown('tourType', {
label: 'Type of experience',
options: [
{ id: 'guided-tour', name: 'Guided sightseeing tour' },
{ id: 'adventure', name: 'Adventure / outdoor activity' },
{ id: 'cultural', name: 'Cultural / historical tour' },
{ id: 'food-wine', name: 'Food & wine experience' },
{ id: 'nature', name: 'Nature / wildlife tour' },
{ id: 'water', name: 'Water activity / cruise' },
{ id: 'multi-day', name: 'Multi-day tour' },
{ id: 'other', name: 'Other' }
],
placeholder: 'Select tour type'
}, '1fr');
 
row.addDropdown('groupSize', {
label: 'Group size',
options: [
{ id: 'private', name: 'Private tour (just my party)' },
{ id: 'small', name: 'Small group (2-10 people)' },
{ id: 'medium', name: 'Medium group (11-25 people)' },
{ id: 'large', name: 'Large group (25+ people)' }
],
placeholder: 'Select group size'
}, '1fr');
});
 
// ============================================
// SECTION 2: Overall Experience
// ============================================
const overallSection = form.addSubform('overallExperience', {
title: 'Overall Experience',
customStyles: () => {
const rating = overallSection.starRating('overallRating')?.value();
if (rating && rating >= 4) return { backgroundColor: '#dcfce7', padding: '16px', borderRadius: '8px' };
if (rating && rating <= 2) return { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px' };
return { padding: '16px', borderRadius: '8px' };
}
});
 
overallSection.addRow(row => {
row.addStarRating('overallRating', {
label: 'How would you rate your overall tour experience?',
maxStars: 5,
size: 'xl',
alignment: 'center',
showConfettiOnMax: true
});
});
 
overallSection.addRow(row => {
row.addEmojiRating('emotionalExperience', {
label: 'How did this tour make you feel?',
preset: 'mood',
size: 'lg',
alignment: 'center'
});
});
 
// ============================================
// SECTION 3: Tour Guide Rating
// ============================================
const guideSection = form.addSubform('guideRating', {
title: 'Your Tour Guide'
});
 
guideSection.addRow(row => {
row.addTextbox('guideName', {
label: 'Guide name (if you remember)',
placeholder: 'Optional'
});
});
 
guideSection.addRow(row => {
row.addMatrixQuestion('guideMatrix', {
label: 'Rate your tour guide on the following:',
rows: [
{ id: 'knowledge', label: 'Knowledge and expertise', isRequired: true },
{ id: 'communication', label: 'Communication and clarity', isRequired: true },
{ id: 'enthusiasm', label: 'Enthusiasm and energy' },
{ id: 'friendliness', label: 'Friendliness and approachability' },
{ id: 'flexibility', label: 'Flexibility and responsiveness' },
{ id: 'safety', label: 'Safety awareness' }
],
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: Tour Components
// ============================================
const componentsSection = form.addSubform('tourComponents', {
title: 'Tour Components'
});
 
componentsSection.addRow(row => {
row.addStarRating('activitiesRating', {
label: 'Quality of activities and experiences',
maxStars: 5,
size: 'lg',
alignment: 'center'
}, '1fr');
 
row.addStarRating('locationsRating', {
label: 'Locations visited',
maxStars: 5,
size: 'lg',
alignment: 'center'
}, '1fr');
});
 
componentsSection.addRow(row => {
row.addStarRating('paceRating', {
label: 'Pace and timing of the tour',
maxStars: 5,
size: 'lg',
alignment: 'center'
}, '1fr');
 
row.addStarRating('transportRating', {
label: 'Transportation quality',
maxStars: 5,
size: 'lg',
alignment: 'center'
}, '1fr');
});
 
componentsSection.addRow(row => {
row.addSlider('lengthFeel', {
label: 'How did you feel about the tour length?',
min: 1,
max: 5,
step: 1,
defaultValue: 3,
showValue: false
});
});
 
componentsSection.addRow(row => {
row.addTextPanel('lengthScale', {
computedValue: () => {
const value = componentsSection.slider('lengthFeel')?.value();
const labels = ['Much too short', 'A bit short', 'Just right', 'A bit long', 'Much too long'];
return labels[(value || 3) - 1];
},
customStyles: {
textAlign: 'center',
fontStyle: 'italic',
color: '#64748b'
}
});
});
 
// ============================================
// SECTION 5: Value & Expectations
// ============================================
const valueSection = form.addSubform('valueExpectations', {
title: 'Value & Expectations'
});
 
valueSection.addRow(row => {
row.addRatingScale('valueForMoney', {
label: 'How would you rate the value for money?',
preset: 'satisfaction',
lowLabel: 'Very poor value',
highLabel: 'Excellent value',
alignment: 'center'
});
});
 
valueSection.addRow(row => {
row.addRadioButton('metExpectations', {
label: 'Did the tour meet your expectations?',
options: [
{ id: 'exceeded', name: 'Exceeded expectations' },
{ id: 'met', name: 'Met expectations' },
{ id: 'below', name: 'Below expectations' }
],
orientation: 'horizontal'
});
});
 
valueSection.addRow(row => {
row.addTextarea('expectationsDetail', {
label: () => {
const met = valueSection.radioButton('metExpectations')?.value();
if (met === 'exceeded') return 'What exceeded your expectations?';
if (met === 'below') return 'What fell short of your expectations?';
return 'Any comments on expectations?';
},
placeholder: 'Share details...',
rows: 2,
autoExpand: true,
isVisible: () => valueSection.radioButton('metExpectations')?.value() !== null
});
});
 
// ============================================
// SECTION 6: Highlights
// ============================================
const highlightsSection = form.addSubform('highlights', {
title: 'Tour Highlights',
isVisible: () => {
const rating = overallSection.starRating('overallRating')?.value();
return rating !== null && rating !== undefined && rating >= 3;
}
});
 
highlightsSection.addRow(row => {
row.addSuggestionChips('bestParts', {
label: 'What were the best parts of the tour? (Select all that apply)',
suggestions: [
{ id: 'guide', name: 'The guide' },
{ id: 'locations', name: 'Beautiful locations' },
{ id: 'activities', name: 'Fun activities' },
{ id: 'learning', name: 'Learning new things' },
{ id: 'food', name: 'Food & refreshments' },
{ id: 'group', name: 'Great group' },
{ id: 'photos', name: 'Photo opportunities' },
{ id: 'unique', name: 'Unique experiences' }
],
alignment: 'center'
});
});
 
// ============================================
// SECTION 7: Improvements
// ============================================
const improvementsSection = form.addSubform('improvements', {
title: 'Areas for Improvement',
isVisible: () => {
const rating = overallSection.starRating('overallRating')?.value();
return rating !== null && rating !== undefined && rating <= 4;
}
});
 
improvementsSection.addRow(row => {
row.addSuggestionChips('improvementAreas', {
label: 'What could be improved?',
suggestions: [
{ id: 'guide-knowledge', name: 'Guide knowledge' },
{ id: 'pace', name: 'Tour pace' },
{ id: 'communication', name: 'Communication' },
{ id: 'transport', name: 'Transportation' },
{ id: 'timing', name: 'Timing/schedule' },
{ id: 'group-size', name: 'Group size' },
{ id: 'food', name: 'Food quality' },
{ id: 'value', name: 'Value for money' }
],
alignment: 'center'
});
});
 
improvementsSection.addSpacer();
 
improvementsSection.addRow(row => {
row.addTextarea('improvementDetails', {
label: 'Please share specific suggestions for improvement',
placeholder: 'Your suggestions help us create better experiences...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 8: Recommendation
// ============================================
const npsSection = form.addSubform('recommendation', {
title: 'Would You Recommend?',
customStyles: () => {
const category = npsSection.ratingScale('tourNps')?.npsCategory();
if (category === 'promoter') return { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px' };
if (category === 'passive') return { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' };
if (category === 'detractor') return { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px' };
return { padding: '16px', borderRadius: '8px' };
}
});
 
npsSection.addRow(row => {
row.addRatingScale('tourNps', {
label: 'How likely are you to recommend this tour to friends?',
preset: 'nps',
showSegmentColors: true,
showCategoryLabel: true,
showConfettiOnPromoter: true,
isRequired: true
});
});
 
npsSection.addRow(row => {
row.addCheckbox('wouldBookAgain', {
label: 'I would book another tour with this company',
isVisible: () => npsSection.ratingScale('tourNps')?.value() !== null
});
});
 
// ============================================
// SECTION 9: Final Comments
// ============================================
const commentsSection = form.addSubform('finalComments', {
title: 'Additional Thoughts',
isVisible: () => npsSection.ratingScale('tourNps')?.value() !== null
});
 
commentsSection.addSpacer();
 
commentsSection.addRow(row => {
row.addTextarea('memorableComment', {
label: 'What will you remember most about this tour?',
placeholder: 'Share your most memorable moment...',
rows: 2,
autoExpand: true
});
});
 
commentsSection.addSpacer();
 
commentsSection.addRow(row => {
row.addTextarea('additionalFeedback', {
label: 'Any other feedback for us?',
placeholder: 'Share any additional thoughts or suggestions...',
rows: 2,
autoExpand: true
});
});
 
// ============================================
// SECTION 10: Summary
// ============================================
const summarySection = form.addSubform('summary', {
title: 'Your Feedback Summary',
isVisible: () => npsSection.ratingScale('tourNps')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const tourName = tourInfoSection.textbox('tourName')?.value();
const overall = overallSection.starRating('overallRating')?.value();
const emotion = overallSection.emojiRating('emotionalExperience')?.value();
const nps = npsSection.ratingScale('tourNps')?.value();
const category = npsSection.ratingScale('tourNps')?.npsCategory();
const wouldBook = npsSection.checkbox('wouldBookAgain')?.value();
const highlights = highlightsSection.suggestionChips('bestParts')?.value() || [];
 
if (!nps) return '';
 
const emotionLabels: Record<string, string> = {
'sad': 'Disappointed',
'down': 'Underwhelmed',
'neutral': 'Neutral',
'happy': 'Happy',
'excited': 'Thrilled'
};
 
let summary = `Tour Feedback Summary\n`;
summary += `${'═'.repeat(25)}\n\n`;
 
if (tourName) summary += `Tour: ${tourName}\n`;
 
if (overall) {
summary += `Overall: ${'★'.repeat(overall)}${'☆'.repeat(5 - overall)}\n`;
}
 
if (emotion) {
summary += `Feeling: ${emotionLabels[emotion] || emotion}\n`;
}
 
summary += `\nNPS: ${nps}/10`;
if (category) {
const label = category === 'promoter' ? ' (Promoter)' :
category === 'passive' ? ' (Passive)' : ' (Detractor)';
summary += label;
}
 
if (highlights.length > 0) {
summary += `\n\nHighlights: ${highlights.length} selected`;
}
 
if (wouldBook !== null && wouldBook !== undefined) {
summary += `\n\nWould book again: ${wouldBook ? 'Yes' : 'Maybe not'}`;
}
 
return summary;
},
customStyles: () => {
const category = npsSection.ratingScale('tourNps')?.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 === 'passive') {
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
} else if (category === 'detractor') {
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
return { ...baseStyles, backgroundColor: '#f1f5f9' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Tour Feedback',
isVisible: () => npsSection.ratingScale('tourNps')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank you for your tour feedback!',
message: 'Your insights help us create even better adventures. We hope to welcome you on another journey soon!'
});
}
 

Frequently Asked Questions

When should I send tour feedback surveys?

Send 24-48 hours after the tour ends while the experience is fresh. Too soon (same day) and guests may be tired; too late and they forget details. For multi-day tours, consider a brief daily check-in plus a comprehensive end-of-tour survey.

What aspects of tours are most important to rate?

Key areas include: guide knowledge and personality, activity quality and variety, logistics (timing, transport, communication), value for money, and overall emotional experience. Guest expectations vs. reality is also valuable to capture.

How can I use tour feedback to improve guide performance?

Share individual guide ratings confidentially, identify patterns across multiple tours, use high-scoring guide techniques as training examples, and pair new guides with top performers. Focus on actionable behaviors, not just overall scores.

Should I include photos in tour feedback forms?

Photo uploads can provide valuable visual feedback about highlights and issues. Consider optional photo submission for 'best moment' and 'what could be improved' categories. Always get permission before using guest photos in marketing.

How do I handle negative tour feedback?

Respond quickly and personally to detractors, offering resolution where possible. Analyze root causes - was it the guide, weather, third-party vendors, or unmet expectations? Use patterns in negative feedback to prevent future issues rather than just addressing individual complaints.