Board Member Feedback Form

This board member feedback form helps nonprofit organizations gather structured input from their board of directors. It covers key governance areas including meeting effectiveness, strategic oversight, fiduciary responsibility, and organizational culture. The form uses matrix questions to evaluate multiple aspects efficiently, while conditional logic reveals deeper questions based on initial responses. Perfect for quarterly board assessments or annual governance reviews.

Specialized

Try the Form

Your input helps strengthen our governance and organizational effectiveness.
Governance Effectiveness
Poor Fair Good Excellent
Strategic Direction*
Setting and reviewing organizational strategy
Fiduciary Oversight*
Financial monitoring and accountability
Policy Development*
Creating and updating organizational policies
Executive Oversight*
Supporting and evaluating leadership
Mission Alignment*
Ensuring activities align with mission
Meeting Effectiveness
0/5
0/5
 
Your Engagement
10hours
10 hours
040
Very dissatisfied
Very satisfied
 
Overall Assessment
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
export function boardFeedbackForm(form: FormTs) {
// Board Member Feedback Form - Nonprofit Governance Survey
// Demonstrates: MatrixQuestion, StarRating, EmojiRating, RatingScale, Slider, dynamic styling
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Board Member Feedback',
computedValue: () => 'Your input helps strengthen our governance and organizational effectiveness.',
customStyles: {
backgroundColor: '#1e40af',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Governance Effectiveness Matrix
// ============================================
const governanceSection = form.addSubform('governance', {
title: 'Governance Effectiveness'
});
 
governanceSection.addRow(row => {
row.addMatrixQuestion('governanceMatrix', {
label: 'Please rate the following governance areas:',
rows: [
{ id: 'strategic', label: 'Strategic Direction', description: 'Setting and reviewing organizational strategy', isRequired: true },
{ id: 'fiduciary', label: 'Fiduciary Oversight', description: 'Financial monitoring and accountability', isRequired: true },
{ id: 'policy', label: 'Policy Development', description: 'Creating and updating organizational policies', isRequired: true },
{ id: 'leadership', label: 'Executive Oversight', description: 'Supporting and evaluating leadership', isRequired: true },
{ id: 'mission', label: 'Mission Alignment', description: 'Ensuring activities align with mission', isRequired: true }
],
columns: [
{ id: 'poor', label: 'Poor' },
{ id: 'fair', label: 'Fair' },
{ id: 'good', label: 'Good' },
{ id: 'excellent', label: 'Excellent' }
],
fullWidth: true,
striped: true
});
});
 
// Conditional follow-up for low governance ratings
governanceSection.addSpacer({ height: '16px' });
governanceSection.addRow(row => {
row.addTextarea('governanceConcerns', {
label: 'Please elaborate on governance areas that need improvement:',
placeholder: 'Share specific concerns or suggestions for strengthening these areas...',
rows: 3,
isVisible: () => {
const matrix = governanceSection.matrixQuestion('governanceMatrix');
if (!matrix) return false;
const values = matrix.value();
if (!values) return false;
return Object.values(values).some(v => v === 'poor' || v === 'fair');
}
});
});
 
// ============================================
// SECTION 2: Meeting Effectiveness
// ============================================
const meetingSection = form.addSubform('meetings', {
title: 'Meeting Effectiveness'
});
 
meetingSection.addRow(row => {
row.addStarRating('meetingQuality', {
label: 'Overall quality of board meetings',
maxStars: 5,
size: 'lg',
showCounter: true,
alignment: 'center'
});
row.addStarRating('preparationMaterials', {
label: 'Quality of pre-meeting materials',
maxStars: 5,
size: 'lg',
showCounter: true,
alignment: 'center'
});
});
 
meetingSection.addRow(row => {
row.addEmojiRating('boardClimate', {
label: 'How would you describe the board meeting atmosphere?',
preset: 'mood',
size: 'lg',
showLabels: true,
alignment: 'center'
});
});
 
meetingSection.addRow(row => {
row.addRadioButton('meetingFrequency', {
label: 'How do you feel about the current meeting frequency?',
options: [
{ id: 'too-few', name: 'Too few meetings' },
{ id: 'just-right', name: 'Just right' },
{ id: 'too-many', name: 'Too many meetings' }
],
orientation: 'horizontal'
});
});
 
// Dynamic feedback based on meeting quality
meetingSection.addSpacer({ height: '16px' });
meetingSection.addRow(row => {
row.addTextarea('meetingImprovements', {
label: () => {
const quality = meetingSection.starRating('meetingQuality')?.value();
if (quality && quality >= 4) return 'What makes our meetings effective?';
if (quality && quality <= 2) return 'What specific changes would improve our meetings?';
return 'How can we improve our meeting effectiveness?';
},
placeholder: 'Your suggestions for better board meetings...',
rows: 2,
isVisible: () => meetingSection.starRating('meetingQuality')?.value() !== null
});
});
 
// ============================================
// SECTION 3: Board Member Engagement
// ============================================
const engagementSection = form.addSubform('engagement', {
title: 'Your Engagement'
});
 
engagementSection.addRow(row => {
row.addSlider('timeCommitment', {
label: 'Average hours per month you dedicate to board duties',
min: 0,
max: 40,
step: 1,
unit: 'hours',
showValue: true,
defaultValue: 10
});
});
 
engagementSection.addRow(row => {
row.addRatingScale('contributionSatisfaction', {
label: 'How satisfied are you with your ability to contribute meaningfully?',
preset: 'satisfaction',
size: 'md',
alignment: 'center'
});
});
 
engagementSection.addRow(row => {
row.addCheckboxList('engagementBarriers', {
label: 'What barriers limit your engagement? (select all that apply)',
options: [
{ id: 'time', name: 'Time constraints' },
{ id: 'info', name: 'Insufficient information' },
{ id: 'unclear', name: 'Unclear expectations' },
{ id: 'expertise', name: 'Skills not utilized' },
{ id: 'remote', name: 'Meeting logistics' },
{ id: 'none', name: 'No significant barriers' }
],
orientation: 'vertical'
});
});
 
// ============================================
// SECTION 4: Overall Assessment & NPS
// ============================================
const overallSection = form.addSubform('overall', {
title: 'Overall Assessment',
customStyles: () => {
const nps = overallSection.ratingScale('boardNPS')?.npsCategory();
if (nps === 'promoter') return { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px' };
if (nps === 'detractor') return { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px' };
return { padding: '16px', borderRadius: '8px', border: '1px solid #e5e7eb' };
}
});
 
overallSection.addRow(row => {
row.addRatingScale('boardNPS', {
label: 'How likely are you to recommend serving on this board to a colleague?',
preset: 'nps',
showCategoryLabel: true,
showSegmentColors: true,
isRequired: true
});
});
 
// Conditional follow-up based on NPS
overallSection.addSpacer({ height: '16px' });
overallSection.addRow(row => {
row.addTextarea('npsReason', {
label: () => {
const category = overallSection.ratingScale('boardNPS')?.npsCategory();
if (category === 'promoter') return 'What makes this board experience exceptional?';
if (category === 'detractor') return 'What would need to change for you to recommend this experience?';
return 'What would make this board experience better?';
},
placeholder: 'Share your thoughts...',
rows: 3,
isVisible: () => overallSection.ratingScale('boardNPS')?.value() !== null
});
});
 
// ============================================
// SECTION 5: Improvement Priorities
// ============================================
const prioritiesSection = form.addSubform('priorities', {
title: 'Improvement Priorities',
isVisible: () => overallSection.ratingScale('boardNPS')?.value() !== null
});
 
prioritiesSection.addRow(row => {
row.addCheckboxList('topPriorities', {
label: 'Select your top 3 priorities for board improvement:',
options: [
{ id: 'strategy', name: 'Strategic planning process' },
{ id: 'diversity', name: 'Board diversity and inclusion' },
{ id: 'skills', name: 'Skills development and training' },
{ id: 'communication', name: 'Communication between meetings' },
{ id: 'committees', name: 'Committee effectiveness' },
{ id: 'succession', name: 'Leadership succession planning' },
{ id: 'evaluation', name: 'Performance evaluation processes' },
{ id: 'community', name: 'Community engagement' }
],
orientation: 'vertical',
max: 3
});
});
 
prioritiesSection.addSpacer({ height: '16px' });
prioritiesSection.addRow(row => {
row.addTextarea('additionalSuggestions', {
label: 'Any additional suggestions for improving board effectiveness?',
placeholder: 'Share any other ideas or recommendations...',
rows: 3
});
});
 
// ============================================
// SECTION 6: Feedback Summary
// ============================================
const summarySection = form.addSubform('summary', {
title: 'Your Feedback Summary',
isVisible: () => overallSection.ratingScale('boardNPS')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const nps = overallSection.ratingScale('boardNPS')?.value();
const npsCategory = overallSection.ratingScale('boardNPS')?.npsCategory();
const meetingQuality = meetingSection.starRating('meetingQuality')?.value();
const timeCommitment = engagementSection.slider('timeCommitment')?.value();
const priorities = prioritiesSection.checkboxList('topPriorities')?.value() || [];
 
if (!nps) return '';
 
let summary = '📋 Board Feedback Summary\n';
summary += '═'.repeat(30) + '\n\n';
 
summary += `📊 Board NPS: ${nps}/10 (${npsCategory?.charAt(0).toUpperCase()}${npsCategory?.slice(1)})\n`;
 
if (meetingQuality) {
const stars = '★'.repeat(meetingQuality) + '☆'.repeat(5 - meetingQuality);
summary += `📅 Meeting Quality: ${stars}\n`;
}
 
if (timeCommitment !== null && timeCommitment !== undefined) {
summary += `⏱️ Monthly Time: ${timeCommitment} hours\n`;
}
 
if (priorities.length > 0) {
summary += `\n🎯 Top ${priorities.length} Priority Areas Selected`;
}
 
return summary;
},
customStyles: () => {
const category = overallSection.ratingScale('boardNPS')?.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' };
if (category === 'detractor') return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback',
isVisible: () => overallSection.ratingScale('boardNPS')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank you for your feedback!',
message: 'Your insights are invaluable for strengthening our governance and board effectiveness. We will review all responses and share aggregate findings at our next board meeting.'
});
}
 

Frequently Asked Questions

How often should we survey our board members?

Best practice is quarterly for quick pulse checks and annually for comprehensive assessments. After major strategic decisions or organizational changes, consider additional focused surveys. Avoid over-surveying to maintain response quality.

Should board surveys be anonymous?

Anonymous surveys often yield more honest feedback, especially for sensitive governance topics. However, for smaller boards where anonymity is difficult, emphasize confidentiality and use responses only for aggregate analysis and improvement.

What should we do with the feedback?

Share aggregate results with the full board, identify patterns and themes, create action items for improvement, and track progress over time. Consider dedicating a portion of a board meeting to discuss findings and develop an improvement plan.

How do we measure board effectiveness?

Key metrics include meeting attendance and preparation, quality of strategic discussions, fiduciary oversight, fundraising participation, committee engagement, and overall satisfaction scores. Compare results over time to track improvement.

Can we customize the governance categories?

Yes, the form is fully customizable. You can add or remove governance categories, adjust rating scales, include organization-specific questions, and modify the matrix evaluation criteria to match your board's priorities and structure.