Program Impact Survey

This Program Impact Survey template helps nonprofits and social organizations measure the real-world impact of their programs. Using a before/after methodology, it captures baseline conditions and post-program outcomes to demonstrate measurable change. The survey includes validated impact metrics, outcome tracking across multiple dimensions, and generates compelling data for grant reports and donor communications.

Specialized

Try the Form

Help us measure our program's effectiveness by sharing your experience.
Assessment Phase
 
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
export function impactAssessmentSurvey(form: FormTs) {
// Program Impact Survey - Before/After Assessment for Nonprofits
// Demonstrates: Multi-page wizard, Sliders, MatrixQuestion, StarRating, RatingScale (NPS), computed gap analysis
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Program Impact Assessment',
computedValue: () => 'Help us measure our program\'s effectiveness by sharing your experience.',
customStyles: {
background: 'linear-gradient(135deg, #059669 0%, #10b981 100%)',
color: 'white',
padding: '28px',
borderRadius: '12px',
textAlign: 'center',
fontSize: '15px'
}
});
});
 
// ============================================
// PHASE SELECTOR
// ============================================
const phaseSection = form.addSubform('phaseSection', {
title: 'Assessment Phase'
});
 
phaseSection.addRow(row => {
row.addRadioButton('assessmentPhase', {
label: 'When are you completing this survey?',
options: [
{ id: 'before', name: 'Before the program (Baseline)' },
{ id: 'after', name: 'After the program (Outcomes)' }
],
orientation: 'vertical',
isRequired: true
});
});
 
// ============================================
// BEFORE PHASE - BASELINE ASSESSMENT
// ============================================
const beforeSection = form.addSubform('beforeSection', {
title: 'Baseline Assessment',
isVisible: () => phaseSection.radioButton('assessmentPhase')?.value() === 'before',
customStyles: { backgroundColor: '#ecfdf5', padding: '16px', borderRadius: '8px' }
});
 
beforeSection.addRow(row => {
row.addTextPanel('beforeInstructions', {
computedValue: () => 'Please rate your current situation BEFORE starting the program. This helps us measure the impact later.',
customStyles: {
backgroundColor: '#d1fae5',
padding: '12px',
borderRadius: '6px',
borderLeft: '4px solid #059669',
marginBottom: '16px'
}
});
});
 
beforeSection.addRow(row => {
row.addMatrixQuestion('baselineRatings', {
label: 'Rate your current level in each area (1 = Very Low, 5 = Very High)',
rows: [
{ id: 'knowledge', label: 'Knowledge in this area', isRequired: true },
{ id: 'skills', label: 'Practical skills', isRequired: true },
{ id: 'confidence', label: 'Confidence level', isRequired: true },
{ id: 'resources', label: 'Access to resources', isRequired: true },
{ id: 'network', label: 'Support network', isRequired: true }
],
columns: [
{ id: '1', label: '1' },
{ id: '2', label: '2' },
{ id: '3', label: '3' },
{ id: '4', label: '4' },
{ id: '5', label: '5' }
],
striped: true,
fullWidth: true
});
});
 
beforeSection.addSpacer();
 
beforeSection.addRow(row => {
row.addTextarea('baselineGoals', {
label: 'What do you hope to achieve through this program?',
placeholder: 'Describe your goals and expectations...',
rows: 3,
autoExpand: true
});
});
 
beforeSection.addRow(row => {
row.addCheckboxList('baselineChallenges', {
label: 'What challenges are you currently facing? (Select all that apply)',
options: [
{ id: 'lack-knowledge', name: 'Lack of knowledge/information' },
{ id: 'lack-skills', name: 'Lack of practical skills' },
{ id: 'lack-resources', name: 'Limited access to resources' },
{ id: 'lack-confidence', name: 'Low confidence' },
{ id: 'lack-network', name: 'Limited support network' },
{ id: 'lack-time', name: 'Time constraints' },
{ id: 'lack-funding', name: 'Financial barriers' }
],
orientation: 'vertical'
});
});
 
// ============================================
// AFTER PHASE - OUTCOMES ASSESSMENT
// ============================================
const afterSection = form.addSubform('afterSection', {
title: 'Outcomes Assessment',
isVisible: () => phaseSection.radioButton('assessmentPhase')?.value() === 'after',
customStyles: { backgroundColor: '#eff6ff', padding: '16px', borderRadius: '8px' }
});
 
afterSection.addRow(row => {
row.addTextPanel('afterInstructions', {
computedValue: () => 'Please rate your current situation AFTER completing the program. Compare with how you felt before.',
customStyles: {
backgroundColor: '#dbeafe',
padding: '12px',
borderRadius: '6px',
borderLeft: '4px solid #2563eb',
marginBottom: '16px'
}
});
});
 
afterSection.addRow(row => {
row.addMatrixQuestion('outcomeRatings', {
label: 'Rate your current level in each area (1 = Very Low, 5 = Very High)',
rows: [
{ id: 'knowledge', label: 'Knowledge in this area', isRequired: true },
{ id: 'skills', label: 'Practical skills', isRequired: true },
{ id: 'confidence', label: 'Confidence level', isRequired: true },
{ id: 'resources', label: 'Access to resources', isRequired: true },
{ id: 'network', label: 'Support network', isRequired: true }
],
columns: [
{ id: '1', label: '1' },
{ id: '2', label: '2' },
{ id: '3', label: '3' },
{ id: '4', label: '4' },
{ id: '5', label: '5' }
],
striped: true,
fullWidth: true
});
});
 
afterSection.addSpacer();
 
// Overall Impact Rating
afterSection.addRow(row => {
row.addStarRating('overallImpact', {
label: 'How would you rate the overall impact of this program on your life?',
maxStars: 5,
size: 'lg',
alignment: 'center',
showConfettiOnMax: true
});
});
 
afterSection.addRow(row => {
row.addEmojiRating('satisfactionEmoji', {
label: 'How satisfied are you with the program outcomes?',
preset: 'satisfaction',
size: 'lg',
alignment: 'center',
showLabels: true
});
});
 
// ============================================
// OUTCOMES ACHIEVED (After Phase)
// ============================================
const outcomesSection = form.addSubform('outcomesSection', {
title: 'Outcomes Achieved',
isVisible: () => phaseSection.radioButton('assessmentPhase')?.value() === 'after'
});
 
outcomesSection.addRow(row => {
row.addCheckboxList('achievedOutcomes', {
label: 'Which outcomes did you achieve through this program? (Select all that apply)',
options: [
{ id: 'new-knowledge', name: 'Gained new knowledge or information' },
{ id: 'new-skills', name: 'Developed new practical skills' },
{ id: 'new-connections', name: 'Made valuable connections/network' },
{ id: 'increased-confidence', name: 'Increased confidence' },
{ id: 'changed-behavior', name: 'Changed behaviors or habits' },
{ id: 'achieved-goal', name: 'Achieved a specific goal' },
{ id: 'improved-situation', name: 'Improved overall situation' },
{ id: 'new-opportunities', name: 'Gained access to new opportunities' }
],
orientation: 'vertical'
});
});
 
outcomesSection.addSpacer();
 
outcomesSection.addRow(row => {
row.addTextarea('successStory', {
label: () => {
const impact = afterSection.starRating('overallImpact')?.value();
if (impact && impact >= 4) {
return 'Please share your success story! How has this program changed your life?';
}
return 'Please share your experience with the program';
},
placeholder: 'Your story can inspire others and help us improve...',
rows: 4,
autoExpand: true
});
});
 
// ============================================
// RECOMMENDATION (After Phase)
// ============================================
const recommendSection = form.addSubform('recommendSection', {
title: 'Recommendation',
isVisible: () => phaseSection.radioButton('assessmentPhase')?.value() === 'after',
customStyles: () => {
const category = recommendSection.ratingScale('npsScore')?.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', border: '1px dashed #cbd5e1' };
}
});
 
recommendSection.addRow(row => {
row.addRatingScale('npsScore', {
preset: 'nps',
label: 'How likely are you to recommend this program to others in a similar situation?',
showCategoryLabel: true,
showSegmentColors: true,
showConfettiOnPromoter: true
});
});
 
recommendSection.addRow(row => {
row.addTextarea('recommendReason', {
label: () => {
const category = recommendSection.ratingScale('npsScore')?.npsCategory();
if (category === 'promoter') return 'What would you tell someone about this program?';
if (category === 'detractor') return 'What could we do to improve the program?';
return 'Any additional comments?';
},
placeholder: 'Share your thoughts...',
rows: 3,
isVisible: () => recommendSection.ratingScale('npsScore')?.value() !== null
});
});
 
// ============================================
// IMPACT SUMMARY (After Phase)
// ============================================
const summarySection = form.addSubform('summarySection', {
title: 'Your Impact Summary',
isVisible: () => {
const phase = phaseSection.radioButton('assessmentPhase')?.value();
const hasRatings = afterSection.matrixQuestion('outcomeRatings')?.areAllRequiredRowsAnswered() === true;
return phase === 'after' && hasRatings;
}
});
 
summarySection.addRow(row => {
row.addTextPanel('impactSummary', {
computedValue: () => {
const outcomes = afterSection.matrixQuestion('outcomeRatings')?.value();
const impact = afterSection.starRating('overallImpact')?.value();
const satisfaction = afterSection.emojiRating('satisfactionEmoji')?.value();
const achieved = outcomesSection.checkboxList('achievedOutcomes')?.value() || [];
const nps = recommendSection.ratingScale('npsScore')?.value();
const category = recommendSection.ratingScale('npsScore')?.npsCategory();
 
if (!outcomes) return '';
 
let summary = '📊 IMPACT SUMMARY\n';
summary += '═'.repeat(30) + '\n\n';
 
// Calculate average outcome score
const outcomeValues = Object.values(outcomes).map(v => parseInt(v as string) || 0);
const avgScore = outcomeValues.length > 0
? (outcomeValues.reduce((a, b) => a + b, 0) / outcomeValues.length).toFixed(1)
: 'N/A';
 
summary += `📈 Average Outcome Score: ${avgScore}/5\n`;
 
if (impact) {
summary += `⭐ Overall Impact: ${impact}/5 stars\n`;
}
 
if (satisfaction) {
const labels: Record<string, string> = {
'very-bad': 'Very Dissatisfied',
'bad': 'Dissatisfied',
'neutral': 'Neutral',
'good': 'Satisfied',
'excellent': 'Very Satisfied'
};
summary += `😊 Satisfaction: ${labels[satisfaction] || satisfaction}\n`;
}
 
if (achieved.length > 0) {
summary += `\n✅ Outcomes Achieved: ${achieved.length}\n`;
}
 
if (nps !== null && nps !== undefined) {
const emoji = category === 'promoter' ? '🎉' : category === 'passive' ? '🤔' : '📝';
summary += `\n${emoji} NPS Score: ${nps}/10 (${category?.charAt(0).toUpperCase()}${category?.slice(1)})\n`;
}
 
return summary;
},
customStyles: () => {
const category = recommendSection.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 === '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', borderLeft: '4px solid #64748b' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: () => {
const phase = phaseSection.radioButton('assessmentPhase')?.value();
return phase === 'before' ? 'Submit Baseline Assessment' : 'Submit Outcomes Assessment';
},
isVisible: () => phaseSection.radioButton('assessmentPhase')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: () => {
const phase = phaseSection.radioButton('assessmentPhase')?.value();
return phase === 'before' ? 'Baseline Assessment Recorded!' : 'Thank You for Sharing Your Impact!';
},
message: () => {
const phase = phaseSection.radioButton('assessmentPhase')?.value();
if (phase === 'before') {
return 'Your baseline assessment has been recorded. We look forward to measuring your progress after the program!';
}
return 'Your feedback helps us demonstrate program effectiveness and improve future offerings. Your story matters!';
}
});
}
 

Frequently Asked Questions

When should I administer this survey?

For best results, administer at two points: (1) at program enrollment to capture baseline conditions, and (2) at program completion or follow-up to measure outcomes. The before/after comparison reveals true program impact.

How is the impact score calculated?

The impact score compares before and after ratings across outcome areas. Positive changes indicate improvement, while the magnitude shows impact strength. The summary shows both raw changes and percentage improvement.

Can I customize the outcome categories?

Yes. The template includes common outcome areas like knowledge, skills, confidence, and behavior change. You can modify these to match your specific program theory of change and logic model.

How does this help with grant reporting?

The survey generates quantifiable impact data that funders expect. You'll have concrete before/after metrics, beneficiary satisfaction scores, and testimonial quotes to include in grant reports and impact statements.

Is this suitable for longitudinal tracking?

Yes. You can administer the survey at multiple intervals (baseline, midpoint, completion, follow-up) to track progress over time. Each response captures a snapshot that contributes to longitudinal analysis.