Employee Engagement Score: How Connected Is Your Team?

This comprehensive employee engagement assessment evaluates your team's connection to work across five critical dimensions: Recognition & Appreciation, Growth & Development, Communication & Feedback, Autonomy & Trust, and Purpose & Meaning. Each area is scored independently to identify specific strengths and improvement opportunities. The quiz provides an overall engagement grade (A through F) with personalized recommendations for boosting team motivation and reducing turnover.

Assessment

Try the Quiz

📊 Employee Engagement Score: Is Your Team Thriving?
How well does your organization recognize employees?
1Rarely
5Very Often
Rarely
Very Often
1Not meaningful
5Very meaningful
Not meaningful
Very meaningful
Evaluate learning and career opportunities
 
1Very unclear
5Very clear
Very unclear
Very clear
Assess management effectiveness
Poor Fair Good Excellent
Clear communication*
Building trust*
Giving feedback*
Supporting team*
Evaluate workplace culture and collaboration
1Very weak
5Very strong
Very weak
Very strong
Assess flexibility and wellbeing support
 
1Very poorly
5Very well
Very poorly
Very well
See how your team is doing
0%
🏆 Critical - Immediate Action Needed
📊 Category Breakdown (click to expand)
0%
0%
0%
0%
0%
Focus on Recognition & Appreciation to improve overall engagement.
Receive detailed insights and action recommendations
 
 
 
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
509
510
511
512
513
514
515
516
517
518
export function employeeEngagementQuiz(form: FormTs) {
form.setTitle(() => '📊 Employee Engagement Score: Is Your Team Thriving?');
 
// ========== STATE ==========
type CategoryKey = 'recognition' | 'growth' | 'leadership' | 'culture' | 'worklife';
 
const scores = form.state<Record<CategoryKey, number>>({
recognition: 0,
growth: 0,
leadership: 0,
culture: 0,
worklife: 0
});
 
// ========== SCORING FUNCTIONS ==========
const updateScore = (category: CategoryKey, points: number) => {
scores.update(current => ({
...current,
[category]: (current[category] || 0) + points
}));
};
 
const getTotalScore = () => {
const s = scores();
return (Object.values(s) as number[]).reduce((sum: number, val: number) => sum + val, 0);
};
 
const getMaxScore = () => 100;
const getScorePercentage = () => Math.round((getTotalScore() / getMaxScore()) * 100);
 
const getEngagementLevel = (): 'thriving' | 'engaged' | 'neutral' | 'disengaged' | 'critical' => {
const pct = getScorePercentage();
if (pct >= 80) return 'thriving';
if (pct >= 65) return 'engaged';
if (pct >= 50) return 'neutral';
if (pct >= 35) return 'disengaged';
return 'critical';
};
 
const getEngagementLabel = () => {
const level = getEngagementLevel();
const labels = {
thriving: 'Thriving Team',
engaged: 'Engaged Team',
neutral: 'Neutral Engagement',
disengaged: 'Disengaged Team',
critical: 'Critical - Immediate Action Needed'
};
return labels[level];
};
 
const getCategoryScore = (category: CategoryKey) => {
const s = scores();
const maxPerCategory = 20;
return Math.round((s[category] / maxPerCategory) * 100);
};
 
const getWeakestArea = (): CategoryKey => {
const s = scores();
const entries = Object.entries(s) as [CategoryKey, number][];
const sorted = entries.sort((a, b) => a[1] - b[1]);
return sorted[0]?.[0] || 'recognition';
};
 
const getCategoryLabel = (category: CategoryKey) => {
const labels: Record<CategoryKey, string> = {
recognition: 'Recognition & Appreciation',
growth: 'Growth & Development',
leadership: 'Leadership & Management',
culture: 'Team Culture',
worklife: 'Work-Life Balance'
};
return labels[category];
};
 
// ========== COMPLETION SCREEN ==========
form.configureCompletionScreen({
type: 'text',
title: '📊 Your Engagement Report Is Ready!',
message: () => `Your team engagement score is ${getScorePercentage()}% (${getEngagementLabel()}). Check your email for detailed insights and action recommendations.`
});
 
// ========== PAGES ==========
const pages = form.addPages('quiz-pages', { heightMode: 'current-page' });
 
// ========== PAGE 1: Recognition ==========
const page1 = pages.addPage('recognition', { mobileBreakpoint: 500 });
 
page1.addRow(row => {
row.addTextPanel('header1', {
label: 'Step 1 of 6: Recognition & Appreciation',
computedValue: () => 'How well does your organization recognize employees?',
customStyles: { fontSize: '0.9rem', color: '#6b7280', marginBottom: '1rem' }
});
});
 
page1.addSpacer({ height: '24px' });
 
page1.addRow(row => {
row.addRatingScale('recognitionFrequency', {
label: 'How often do employees receive recognition for their work?',
preset: 'likert-5',
lowLabel: 'Rarely',
highLabel: 'Very Often',
onValueChange: (v) => {
if (v) updateScore('recognition', v * 2);
}
});
});
 
page1.addRow(row => {
row.addRatingScale('recognitionMeaningful', {
label: 'How meaningful is the recognition employees receive?',
preset: 'likert-5',
lowLabel: 'Not meaningful',
highLabel: 'Very meaningful',
onValueChange: (v) => {
if (v) updateScore('recognition', v * 2);
}
});
});
 
// ========== PAGE 2: Growth ==========
const page2 = pages.addPage('growth', { mobileBreakpoint: 500 });
 
page2.addRow(row => {
row.addTextPanel('header2', {
label: 'Step 2 of 6: Growth & Development',
computedValue: () => 'Evaluate learning and career opportunities',
customStyles: { fontSize: '0.9rem', color: '#6b7280', marginBottom: '1rem' }
});
});
 
page2.addSpacer({ height: '24px' });
 
page2.addRow(row => {
row.addRadioButton('learningOpportunities', {
label: 'What learning opportunities are available?',
options: [
{ id: 'comprehensive', name: 'Comprehensive L&D program with budget' },
{ id: 'some', name: 'Some training available on request' },
{ id: 'limited', name: 'Limited to job-specific training' },
{ id: 'none', name: 'No formal learning programs' }
],
orientation: 'vertical',
onValueChange: (v) => {
if (v === 'comprehensive') updateScore('growth', 10);
else if (v === 'some') updateScore('growth', 7);
else if (v === 'limited') updateScore('growth', 4);
else if (v === 'none') updateScore('growth', 1);
}
});
});
 
page2.addRow(row => {
row.addRatingScale('careerPath', {
label: 'How clear are career advancement paths?',
preset: 'likert-5',
lowLabel: 'Very unclear',
highLabel: 'Very clear',
onValueChange: (v) => {
if (v) updateScore('growth', v * 2);
}
});
});
 
// ========== PAGE 3: Leadership ==========
const page3 = pages.addPage('leadership', { mobileBreakpoint: 500 });
 
page3.addRow(row => {
row.addTextPanel('header3', {
label: 'Step 3 of 6: Leadership & Management',
computedValue: () => 'Assess management effectiveness',
customStyles: { fontSize: '0.9rem', color: '#6b7280', marginBottom: '1rem' }
});
});
 
page3.addSpacer({ height: '24px' });
 
page3.addRow(row => {
row.addMatrixQuestion('leadershipQualities', {
label: 'Rate your leadership team on:',
rows: [
{ id: 'communication', label: 'Clear communication', isRequired: true },
{ id: 'trust', label: 'Building trust', isRequired: true },
{ id: 'feedback', label: 'Giving feedback', isRequired: true },
{ id: 'support', label: 'Supporting team', isRequired: true }
],
columns: [
{ id: 'poor', label: 'Poor' },
{ id: 'fair', label: 'Fair' },
{ id: 'good', label: 'Good' },
{ id: 'excellent', label: 'Excellent' }
],
onValueChange: (v) => {
if (!v) return;
let points = 0;
Object.values(v).forEach(rating => {
if (rating === 'excellent') points += 5;
else if (rating === 'good') points += 4;
else if (rating === 'fair') points += 2;
else if (rating === 'poor') points += 1;
});
updateScore('leadership', Math.min(points, 20));
}
});
});
 
// ========== PAGE 4: Culture ==========
const page4 = pages.addPage('culture', { mobileBreakpoint: 500 });
 
page4.addRow(row => {
row.addTextPanel('header4', {
label: 'Step 4 of 6: Team Culture',
computedValue: () => 'Evaluate workplace culture and collaboration',
customStyles: { fontSize: '0.9rem', color: '#6b7280', marginBottom: '1rem' }
});
});
 
page4.addSpacer({ height: '24px' });
 
page4.addRow(row => {
row.addSuggestionChips('cultureStrengths', {
label: 'Select cultural strengths present in your organization:',
suggestions: [
{ id: 'collaboration', name: '🤝 Collaboration' },
{ id: 'innovation', name: '💡 Innovation' },
{ id: 'transparency', name: '👁️ Transparency' },
{ id: 'diversity', name: '🌈 Diversity & Inclusion' },
{ id: 'fun', name: '🎉 Fun & Social' },
{ id: 'purpose', name: '🎯 Shared Purpose' }
],
onValueChange: (v) => {
const count = (v || []).length;
updateScore('culture', Math.min(count * 3, 15));
}
});
});
 
page4.addRow(row => {
row.addRatingScale('belonging', {
label: 'How strong is employees\' sense of belonging?',
preset: 'likert-5',
lowLabel: 'Very weak',
highLabel: 'Very strong',
onValueChange: (v) => {
if (v) updateScore('culture', v);
}
});
});
 
// ========== PAGE 5: Work-Life Balance ==========
const page5 = pages.addPage('worklife', { mobileBreakpoint: 500 });
 
page5.addRow(row => {
row.addTextPanel('header5', {
label: 'Step 5 of 6: Work-Life Balance',
computedValue: () => 'Assess flexibility and wellbeing support',
customStyles: { fontSize: '0.9rem', color: '#6b7280', marginBottom: '1rem' }
});
});
 
page5.addSpacer({ height: '24px' });
 
page5.addRow(row => {
row.addRadioButton('flexibility', {
label: 'What flexibility options are available?',
options: [
{ id: 'full', name: 'Full flexibility (remote, flexible hours, unlimited PTO)' },
{ id: 'hybrid', name: 'Hybrid model with some flexibility' },
{ id: 'limited', name: 'Limited flexibility (occasional WFH)' },
{ id: 'none', name: 'Traditional office, fixed hours' }
],
orientation: 'vertical',
onValueChange: (v) => {
if (v === 'full') updateScore('worklife', 10);
else if (v === 'hybrid') updateScore('worklife', 7);
else if (v === 'limited') updateScore('worklife', 4);
else if (v === 'none') updateScore('worklife', 2);
}
});
});
 
page5.addRow(row => {
row.addRatingScale('burnout', {
label: 'How well does leadership address burnout concerns?',
preset: 'likert-5',
lowLabel: 'Very poorly',
highLabel: 'Very well',
onValueChange: (v) => {
if (v) updateScore('worklife', v * 2);
}
});
});
 
// ========== PAGE 6: Results ==========
const page6 = pages.addPage('results', { mobileBreakpoint: 500 });
 
page6.addRow(row => {
row.addTextPanel('header6', {
label: 'Step 6 of 6: Your Engagement Score',
computedValue: () => 'See how your team is doing',
customStyles: { fontSize: '0.9rem', color: '#6b7280', marginBottom: '1rem' }
});
});
 
page6.addSpacer({ height: '24px' });
 
page6.addRow(row => {
row.addTextPanel('mainScore', {
label: 'Team Engagement Score',
computedValue: () => `${getScorePercentage()}%`,
customStyles: () => {
const score = getScorePercentage();
return {
fontSize: '56px',
fontWeight: 'bold',
textAlign: 'center',
padding: '20px',
borderRadius: '12px',
color: score >= 65 ? '#059669' : score >= 50 ? '#ca8a04' : '#dc2626',
background: score >= 65 ? '#ecfdf5' : score >= 50 ? '#fefce8' : '#fef2f2'
};
}
});
});
 
page6.addRow(row => {
row.addTextPanel('engagementLevel', {
label: '',
computedValue: () => `🏆 ${getEngagementLabel()}`,
customStyles: { textAlign: 'center', fontSize: '24px', fontWeight: 'bold', padding: '10px' }
});
});
 
const categorySection = page6.addSubform('categoryBreakdown', {
title: '📊 Category Breakdown (click to expand)',
isCollapsible: true,
customStyles: { background: '#f9fafb', borderRadius: '8px', marginTop: '20px' }
});
 
categorySection.addRow(row => {
row.addTextPanel('recognitionScore', {
label: '🏅 Recognition',
computedValue: () => `${getCategoryScore('recognition')}%`,
customStyles: () => ({
padding: '10px',
background: getCategoryScore('recognition') >= 60 ? '#ecfdf5' : '#fef2f2',
borderRadius: '4px'
})
});
row.addTextPanel('growthScore', {
label: '📈 Growth',
computedValue: () => `${getCategoryScore('growth')}%`,
customStyles: () => ({
padding: '10px',
background: getCategoryScore('growth') >= 60 ? '#ecfdf5' : '#fef2f2',
borderRadius: '4px'
})
});
});
 
categorySection.addRow(row => {
row.addTextPanel('leadershipScore', {
label: '👔 Leadership',
computedValue: () => `${getCategoryScore('leadership')}%`,
customStyles: () => ({
padding: '10px',
background: getCategoryScore('leadership') >= 60 ? '#ecfdf5' : '#fef2f2',
borderRadius: '4px'
})
});
row.addTextPanel('cultureScore', {
label: '🤝 Culture',
computedValue: () => `${getCategoryScore('culture')}%`,
customStyles: () => ({
padding: '10px',
background: getCategoryScore('culture') >= 60 ? '#ecfdf5' : '#fef2f2',
borderRadius: '4px'
})
});
});
 
categorySection.addRow(row => {
row.addTextPanel('worklifeScore', {
label: '⚖️ Work-Life',
computedValue: () => `${getCategoryScore('worklife')}%`,
customStyles: () => ({
padding: '10px',
background: getCategoryScore('worklife') >= 60 ? '#ecfdf5' : '#fef2f2',
borderRadius: '4px'
})
});
row.addEmpty('1fr');
});
 
page6.addRow(row => {
row.addTextPanel('priorityArea', {
label: '🎯 Priority Focus Area',
computedValue: () => `Focus on ${getCategoryLabel(getWeakestArea())} to improve overall engagement.`,
customStyles: { padding: '15px', background: '#fef3c7', borderRadius: '8px', marginTop: '15px' }
});
});
 
// ========== PAGE 7: Lead Capture ==========
const page7 = pages.addPage('lead-capture', { mobileBreakpoint: 500 });
 
page7.addRow(row => {
row.addTextPanel('header7', {
label: 'Get Your Full Engagement Report',
computedValue: () => 'Receive detailed insights and action recommendations',
customStyles: { fontSize: '0.9rem', color: '#6b7280', marginBottom: '1rem' }
});
});
 
page7.addSpacer({ height: '24px' });
 
page7.addRow(row => {
row.addTextbox('name', { label: 'Your Name', isRequired: true, placeholder: 'Jane Smith' }, '1fr');
row.addEmail('email', { label: 'Work Email', isRequired: true, placeholder: 'jane@company.com' }, '1fr');
});
 
page7.addRow(row => {
row.addTextbox('company', { label: 'Company Name', isRequired: true, placeholder: 'Acme Inc.' }, '1fr');
row.addDropdown('companySize', {
label: 'Company Size',
options: [
{ id: 'small', name: '1-50 employees' },
{ id: 'medium', name: '51-200 employees' },
{ id: 'large', name: '201-1000 employees' },
{ id: 'enterprise', name: '1000+ employees' }
]
}, '1fr');
});
 
page7.addRow(row => {
row.addDropdown('role', {
label: 'Your Role',
options: [
{ id: 'hr', name: 'HR / People Ops' },
{ id: 'manager', name: 'Manager / Team Lead' },
{ id: 'exec', name: 'Executive / C-Level' },
{ id: 'other', name: 'Other' }
]
}, '1fr');
row.addEmpty('1fr');
});
 
page7.addRow(row => {
row.addCheckboxList('consent', {
options: [
{ id: 'report', name: '📄 Send me the detailed engagement report', isRequired: true },
{ id: 'benchmark', name: '📊 Include industry benchmarks' },
{ id: 'consultation', name: '📞 I\'d like to discuss engagement strategies' }
],
defaultValue: ['report'],
orientation: 'vertical'
});
});
 
// ========== SUBMIT BUTTON ==========
form.configureSubmitButton({
label: () => `📊 Get My Report (Score: ${getScorePercentage()}%)`
});
 
// ========== PDF REPORT ==========
form.configurePdf('engagement-report', pdf => {
pdf.configure({
filename: 'employee-engagement-report.pdf',
pageSize: 'A4',
allowUserDownload: true,
downloadButtonLabel: '📊 Download Engagement Report',
header: {
title: 'Employee Engagement Assessment',
subtitle: 'Team Health Analysis'
},
footer: {
text: 'Generated by FormTs',
showPageNumbers: true
}
});
 
pdf.addSection('Executive Summary', section => {
section.addRow(row => {
row.addField('Overall Score', `${getScorePercentage()}%`);
row.addField('Status', getEngagementLabel());
});
});
 
pdf.addSection('Category Scores', section => {
section.addTable(
['Category', 'Score', 'Status'],
[
['Recognition', `${getCategoryScore('recognition')}%`, getCategoryScore('recognition') >= 60 ? '✅ Good' : '⚠️ Needs Work'],
['Growth', `${getCategoryScore('growth')}%`, getCategoryScore('growth') >= 60 ? '✅ Good' : '⚠️ Needs Work'],
['Leadership', `${getCategoryScore('leadership')}%`, getCategoryScore('leadership') >= 60 ? '✅ Good' : '⚠️ Needs Work'],
['Culture', `${getCategoryScore('culture')}%`, getCategoryScore('culture') >= 60 ? '✅ Good' : '⚠️ Needs Work'],
['Work-Life', `${getCategoryScore('worklife')}%`, getCategoryScore('worklife') >= 60 ? '✅ Good' : '⚠️ Needs Work']
]
);
});
 
pdf.addPageBreak();
 
pdf.addSection('Recommendations', section => {
section.addText(`Priority Focus: ${getCategoryLabel(getWeakestArea())}`);
section.addSpacer(10);
section.addText('1. Conduct regular pulse surveys to track engagement');
section.addText('2. Implement recognition programs (peer-to-peer, manager)');
section.addText('3. Create clear career development paths');
section.addText('4. Train managers on effective feedback');
section.addText('5. Review and improve flexibility policies');
});
});
 
form.configureSubmitBehavior({ sendToServer: true });
}
 

Frequently Asked Questions

What does employee engagement actually measure?

Employee engagement measures how emotionally connected and committed team members are to their work and organization. It goes beyond job satisfaction to include motivation, purpose, and willingness to contribute discretionary effort.

How is the engagement score calculated?

The score is calculated across five weighted dimensions: Recognition (20%), Growth (20%), Communication (20%), Autonomy (20%), and Purpose (20%). Each dimension is assessed through targeted questions and scored on a 100-point scale.

What's a good engagement score?

Scores above 80 indicate high engagement (A grade), 70-79 is good (B), 60-69 is moderate (C), 50-59 needs improvement (D), and below 50 indicates critical engagement issues (F) requiring immediate attention.

How can I improve low engagement scores?

Focus on your lowest-scoring dimension first. Common improvements include implementing regular recognition programs, creating clear growth paths, establishing feedback channels, giving more autonomy in decision-making, and connecting work to meaningful outcomes.