Remote Work Experience Survey

Understanding how employees experience remote work is critical for retention and productivity. This comprehensive survey covers all aspects of the remote work experience: home office setup, technology and tools, communication effectiveness, work-life balance, and manager support. Use quarterly to track trends and identify areas needing attention. The survey includes satisfaction sliders, matrix questions for detailed tool ratings, and open-ended sections for qualitative feedback.

Employee Experience

Try the Form

Help us improve your work-from-home experience
Your Work Arrangement
 
 
Your Feedback Summary
📊 Remote Work Feedback Summary ═══════════════════════════════════ 🏠 Arrangement: Not specified 🎯 Focus Time: 50% ⚖️ Work-Life Balance: 50%
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
export function remoteWorkFeedbackSurvey(form: FormTs) {
// Remote Work Experience Survey - Comprehensive WFH feedback
// Demonstrates: StarRating, Slider, MatrixQuestion, EmojiRating, CheckboxList, conditional visibility
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Remote Work Experience Survey',
computedValue: () => 'Help us improve your work-from-home experience',
customStyles: {
background: 'linear-gradient(135deg, #0891b2 0%, #0e7490 100%)',
color: 'white',
padding: '28px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Work Arrangement
// ============================================
const arrangementSection = form.addSubform('arrangementSection', {
title: 'Your Work Arrangement',
customStyles: { backgroundColor: '#f0fdfa', padding: '20px', borderRadius: '8px' }
});
 
arrangementSection.addRow(row => {
row.addRadioButton('workArrangement', {
label: 'What is your current work arrangement?',
options: [
{ id: 'fully-remote', name: 'Fully Remote (100% from home)' },
{ id: 'mostly-remote', name: 'Mostly Remote (1-2 days in office)' },
{ id: 'hybrid', name: 'Hybrid (3 days in office)' },
{ id: 'mostly-office', name: 'Mostly Office (occasional remote)' }
],
orientation: 'vertical',
isRequired: true
});
});
 
arrangementSection.addRow(row => {
row.addRadioButton('remoteExperience', {
label: 'How long have you been working remotely?',
options: [
{ id: 'less-6months', name: 'Less than 6 months' },
{ id: '6-12months', name: '6-12 months' },
{ id: '1-2years', name: '1-2 years' },
{ id: 'more-2years', name: 'More than 2 years' }
],
orientation: 'horizontal'
});
});
 
// ============================================
// SECTION 2: Daily Mood Check
// ============================================
const moodSection = form.addSubform('moodSection', {
title: 'How Are You Feeling?',
isVisible: () => arrangementSection.radioButton('workArrangement')?.value() !== null,
customStyles: { backgroundColor: '#faf5ff', padding: '20px', borderRadius: '8px' }
});
 
moodSection.addRow(row => {
row.addEmojiRating('currentMood', {
label: 'How would you describe your typical mood while working remotely?',
preset: 'mood',
size: 'lg',
showLabels: true,
alignment: 'center'
});
});
 
// ============================================
// SECTION 3: Productivity & Focus
// ============================================
const productivitySection = form.addSubform('productivitySection', {
title: 'Productivity & Focus',
isVisible: () => arrangementSection.radioButton('workArrangement')?.value() !== null,
customStyles: { padding: '20px', borderRadius: '8px', border: '1px solid #e2e8f0' }
});
 
productivitySection.addRow(row => {
row.addStarRating('overallProductivity', {
label: 'How productive do you feel working remotely?',
maxStars: 5,
size: 'lg',
showCounter: true,
alignment: 'center'
});
});
 
productivitySection.addRow(row => {
row.addSlider('focusTime', {
label: 'What percentage of your workday can you focus without interruptions?',
min: 0,
max: 100,
step: 10,
defaultValue: 50,
unit: '%',
showValue: true
});
});
 
productivitySection.addRow(row => {
row.addTextPanel('focusLabel', {
computedValue: () => {
const focus = productivitySection.slider('focusTime')?.value() ?? 50;
if (focus >= 70) return 'Excellent focus time! You have good conditions for deep work.';
if (focus >= 50) return 'Moderate focus time. Some room for improvement.';
if (focus >= 30) return 'Limited focus time. Consider adjusting your environment or schedule.';
return 'Very limited focus time. This may be impacting your productivity.';
},
customStyles: () => {
const focus = productivitySection.slider('focusTime')?.value() ?? 50;
const baseStyles = { fontSize: '13px', padding: '8px', borderRadius: '4px', textAlign: 'center' };
if (focus >= 70) return { ...baseStyles, backgroundColor: '#dcfce7', color: '#166534' };
if (focus >= 50) return { ...baseStyles, backgroundColor: '#fef9c3', color: '#854d0e' };
return { ...baseStyles, backgroundColor: '#fee2e2', color: '#991b1b' };
}
});
});
 
// ============================================
// SECTION 4: Work-Life Balance
// ============================================
const balanceSection = form.addSubform('balanceSection', {
title: 'Work-Life Balance',
isVisible: () => arrangementSection.radioButton('workArrangement')?.value() !== null,
customStyles: { backgroundColor: '#fffbeb', padding: '20px', borderRadius: '8px' }
});
 
balanceSection.addRow(row => {
row.addSlider('workLifeBalance', {
label: 'How would you rate your work-life balance?',
min: 0,
max: 100,
step: 5,
defaultValue: 50,
unit: '%',
showValue: true
});
});
 
balanceSection.addRow(row => {
row.addThumbRating('disconnectAbility', {
label: 'Are you able to disconnect from work at the end of the day?',
showLabels: true,
upLabel: 'Yes, usually',
downLabel: 'No, I struggle',
size: 'lg',
alignment: 'center'
});
});
 
balanceSection.addRow(row => {
row.addCheckboxList('balanceChallenges', {
label: 'What challenges do you face with work-life balance?',
options: [
{ id: 'overworking', name: 'Tendency to overwork' },
{ id: 'boundaries', name: 'Difficulty setting boundaries' },
{ id: 'always-on', name: 'Pressure to be always available' },
{ id: 'childcare', name: 'Childcare responsibilities' },
{ id: 'distractions', name: 'Home distractions' },
{ id: 'isolation', name: 'Feelings of isolation' },
{ id: 'no-separation', name: 'No physical separation between work and home' },
{ id: 'none', name: 'No significant challenges' }
],
orientation: 'vertical',
isVisible: () => balanceSection.thumbRating('disconnectAbility')?.value() === 'down'
});
});
 
// ============================================
// SECTION 5: Tools & Technology Rating
// ============================================
const toolsSection = form.addSubform('toolsSection', {
title: 'Tools & Technology',
isVisible: () => arrangementSection.radioButton('workArrangement')?.value() !== null,
customStyles: { backgroundColor: '#f8fafc', padding: '20px', borderRadius: '8px' }
});
 
toolsSection.addRow(row => {
row.addMatrixQuestion('toolsSatisfaction', {
label: 'Rate your satisfaction with these work tools:',
rows: [
{ id: 'video', label: 'Video Conferencing', description: 'Zoom, Teams, Meet, etc.', isRequired: true },
{ id: 'messaging', label: 'Team Messaging', description: 'Slack, Teams chat, etc.', isRequired: true },
{ id: 'email', label: 'Email', description: 'Response times and clarity', isRequired: true },
{ id: 'project-mgmt', label: 'Project Management', description: 'Jira, Asana, Trello, etc.', isRequired: false },
{ id: 'file-sharing', label: 'File Sharing', description: 'Google Drive, SharePoint, etc.', isRequired: false },
{ id: 'hardware', label: 'Hardware/Equipment', description: 'Laptop, monitor, keyboard, etc.', isRequired: true }
],
columns: [
{ id: 'very-dissatisfied', label: 'Very Dissatisfied' },
{ id: 'dissatisfied', label: 'Dissatisfied' },
{ id: 'neutral', label: 'Neutral' },
{ id: 'satisfied', label: 'Satisfied' },
{ id: 'very-satisfied', label: 'Very Satisfied' }
],
striped: true,
fullWidth: true
});
});
 
toolsSection.addSpacer();
 
toolsSection.addRow(row => {
row.addTextarea('toolsNeeded', {
label: 'What tools or equipment would help you work more effectively?',
placeholder: 'e.g., better monitor, noise-canceling headphones, ergonomic chair, specific software...',
rows: 2,
autoExpand: true
});
});
 
// ============================================
// SECTION 6: Communication & Collaboration
// ============================================
const communicationSection = form.addSubform('communicationSection', {
title: 'Communication & Collaboration',
isVisible: () => arrangementSection.radioButton('workArrangement')?.value() !== null,
customStyles: { padding: '20px', borderRadius: '8px', border: '1px solid #e2e8f0' }
});
 
communicationSection.addRow(row => {
row.addStarRating('teamCommunication', {
label: 'How effective is communication within your team?',
maxStars: 5,
size: 'md',
alignment: 'left'
}, '1fr');
row.addStarRating('managerSupport', {
label: 'How supported do you feel by your manager?',
maxStars: 5,
size: 'md',
alignment: 'left'
}, '1fr');
});
 
communicationSection.addRow(row => {
row.addStarRating('meetingEffectiveness', {
label: 'How effective are virtual meetings?',
maxStars: 5,
size: 'md',
alignment: 'left'
}, '1fr');
row.addStarRating('infoAccess', {
label: 'How easy is it to access information you need?',
maxStars: 5,
size: 'md',
alignment: 'left'
}, '1fr');
});
 
// ============================================
// SECTION 7: Home Office Setup
// ============================================
const homeOfficeSection = form.addSubform('homeOfficeSection', {
title: 'Home Office Setup',
isVisible: () => {
const arrangement = arrangementSection.radioButton('workArrangement')?.value();
return arrangement === 'fully-remote' || arrangement === 'mostly-remote';
},
customStyles: { backgroundColor: '#f0fdf4', padding: '20px', borderRadius: '8px' }
});
 
homeOfficeSection.addRow(row => {
row.addStarRating('homeSetup', {
label: 'Rate your home office setup',
maxStars: 5,
size: 'lg',
alignment: 'center'
});
});
 
homeOfficeSection.addRow(row => {
row.addCheckboxList('setupItems', {
label: 'What do you have in your home office?',
options: [
{ id: 'dedicated-space', name: 'Dedicated workspace/room' },
{ id: 'desk', name: 'Proper desk' },
{ id: 'ergonomic-chair', name: 'Ergonomic chair' },
{ id: 'external-monitor', name: 'External monitor' },
{ id: 'fast-internet', name: 'Fast, reliable internet' },
{ id: 'webcam', name: 'Quality webcam' },
{ id: 'headset', name: 'Headset/microphone' },
{ id: 'good-lighting', name: 'Good lighting' }
],
orientation: 'vertical'
});
});
 
// ============================================
// SECTION 8: Overall Assessment
// ============================================
const overallSection = form.addSubform('overallSection', {
title: 'Overall Assessment',
isVisible: () => arrangementSection.radioButton('workArrangement')?.value() !== null,
customStyles: { backgroundColor: '#faf5ff', padding: '20px', borderRadius: '8px' }
});
 
overallSection.addRow(row => {
row.addRatingScale('remoteRecommend', {
preset: 'nps',
label: 'How likely are you to recommend remote work to a colleague?',
showCategoryLabel: true,
showSegmentColors: true
});
});
 
overallSection.addSpacer();
 
overallSection.addRow(row => {
row.addTextarea('improvements', {
label: 'What one change would most improve your remote work experience?',
placeholder: 'Share your top suggestion for improvement...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 9: Summary
// ============================================
const summarySection = form.addSubform('summary', {
title: 'Your Feedback Summary',
isVisible: () => productivitySection.starRating('overallProductivity')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const arrangement = arrangementSection.radioButton('workArrangement')?.value();
const mood = moodSection.emojiRating('currentMood')?.value();
const productivity = productivitySection.starRating('overallProductivity')?.value();
const focusTime = productivitySection.slider('focusTime')?.value() ?? 50;
const balance = balanceSection.slider('workLifeBalance')?.value() ?? 50;
const recommend = overallSection.ratingScale('remoteRecommend')?.value();
 
const arrangementLabels: Record<string, string> = {
'fully-remote': 'Fully Remote',
'mostly-remote': 'Mostly Remote',
'hybrid': 'Hybrid',
'mostly-office': 'Mostly Office'
};
 
const moodLabels: Record<string, string> = {
'sad': '😢 Struggling',
'down': '😔 Not Great',
'neutral': '😐 Neutral',
'happy': '😊 Good',
'excited': '🤩 Thriving'
};
 
let summary = '📊 Remote Work Feedback Summary\n';
summary += `${'═'.repeat(35)}\n\n`;
summary += `🏠 Arrangement: ${arrangementLabels[arrangement || ''] || 'Not specified'}\n`;
 
if (mood) {
summary += `💭 Mood: ${moodLabels[mood] || mood}\n`;
}
 
if (productivity) {
summary += `⚡ Productivity: ${productivity}/5 stars\n`;
}
 
summary += `🎯 Focus Time: ${focusTime}%\n`;
summary += `⚖️ Work-Life Balance: ${balance}%\n`;
 
if (recommend !== null && recommend !== undefined) {
const category = recommend >= 9 ? 'Promoter' : recommend >= 7 ? 'Passive' : 'Detractor';
summary += `\n📢 Would Recommend: ${recommend}/10 (${category})`;
}
 
return summary;
},
customStyles: {
padding: '20px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px',
backgroundColor: '#f0fdfa',
borderLeft: '4px solid #0891b2'
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Remote Work Feedback',
isVisible: () => arrangementSection.radioButton('workArrangement')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Feedback!',
message: 'Your insights help us create a better remote work experience for everyone. We review this feedback regularly to improve our policies and support.'
});
}
 

Frequently Asked Questions

How often should we run this survey?

Quarterly is ideal for tracking trends without causing survey fatigue. Consider running it after major policy changes (e.g., return-to-office announcements) or when onboarding remote employees.

Should this be anonymous?

Yes, anonymity typically yields more honest feedback about sensitive topics like work-life balance and manager support. If you need demographic breakdowns, keep groups large enough to maintain anonymity.

What actions should we take based on results?

Focus on low-scoring areas. Common actions include: upgrading home office stipends, improving async communication guidelines, training managers on remote leadership, and clarifying availability expectations.

How do we handle hybrid workers?

This survey works for fully remote and hybrid employees. The questions adapt to their experience. Consider segmenting results to compare fully remote vs hybrid satisfaction levels.

What benchmarks should we target?

Aim for 4+ out of 5 stars on key metrics. Work-life balance scores below 60% and productivity ratings under 3.5 stars indicate issues requiring attention. Track your own trends over time as the best benchmark.