Financial Advisor Review Form

This comprehensive financial advisor review form helps wealth management firms and advisory practices measure client satisfaction with their advisors. The form evaluates critical aspects including trustworthiness, financial expertise, communication quality, responsiveness, and perceived value. Special attention is given to trust metrics and long-term relationship indicators, which are crucial in financial services. Use this feedback to identify top-performing advisors, areas for professional development, and opportunities to strengthen client relationships.

Specialized

Try the Form

Your confidential feedback helps us serve you better
Your Advisor
 
Additional Comments
Feedback Summary
 
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
export function financialAdvisor(form: FormTs) {
// Financial Advisor Review Form - Evaluate wealth advisor performance
// Demonstrates: MatrixQuestion for trust metrics, Multiple StarRatings, RatingScale (NPS), Slider, EmojiRating, SuggestionChips, dynamic styling
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Financial Advisor Feedback',
computedValue: () => 'Your confidential feedback helps us serve you better',
customStyles: {
backgroundColor: '#0f172a',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Advisor & Relationship Info
// ============================================
const advisorSection = form.addSubform('advisor', {
title: 'Your Advisor'
});
 
advisorSection.addRow(row => {
row.addTextbox('advisorName', {
label: 'Advisor Name',
placeholder: 'Enter your advisor\'s name',
isRequired: true
}, '1fr');
row.addDropdown('relationshipLength', {
label: 'How long have you worked together?',
options: [
{ id: 'new', name: 'Less than 1 year' },
{ id: '1-3', name: '1-3 years' },
{ id: '3-5', name: '3-5 years' },
{ id: '5-10', name: '5-10 years' },
{ id: '10+', name: 'More than 10 years' }
],
placeholder: 'Select duration',
isRequired: true
}, '1fr');
});
 
advisorSection.addRow(row => {
row.addDropdown('primaryService', {
label: 'Primary service received',
options: [
{ id: 'wealth', name: 'Wealth Management' },
{ id: 'retirement', name: 'Retirement Planning' },
{ id: 'investment', name: 'Investment Advisory' },
{ id: 'tax', name: 'Tax Planning' },
{ id: 'estate', name: 'Estate Planning' },
{ id: 'insurance', name: 'Insurance Planning' },
{ id: 'comprehensive', name: 'Comprehensive Financial Planning' }
],
placeholder: 'Select service'
}, '1fr');
row.addDropdown('meetingFrequency', {
label: 'How often do you meet?',
options: [
{ id: 'monthly', name: 'Monthly' },
{ id: 'quarterly', name: 'Quarterly' },
{ id: 'semi', name: 'Semi-annually' },
{ id: 'annual', name: 'Annually' },
{ id: 'as-needed', name: 'As needed' }
],
placeholder: 'Select frequency'
}, '1fr');
});
 
// ============================================
// SECTION 2: Trust & Confidence
// ============================================
const trustSection = form.addSubform('trust', {
title: 'Trust & Confidence',
isVisible: () => advisorSection.textbox('advisorName')?.value() !== null && advisorSection.textbox('advisorName')?.value() !== '',
customStyles: () => {
const trust = trustSection.slider('trustLevel')?.value() || 0;
if (trust >= 8) return { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px' };
if (trust >= 5) return { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' };
if (trust >= 1) return { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px' };
return { padding: '16px', borderRadius: '8px', border: '1px dashed #cbd5e1' };
}
});
 
trustSection.addRow(row => {
row.addSlider('trustLevel', {
label: () => {
const trust = trustSection.slider('trustLevel')?.value() || 0;
if (trust >= 9) return 'How much do you trust your advisor? VERY HIGH TRUST';
if (trust >= 7) return 'How much do you trust your advisor? HIGH TRUST';
if (trust >= 5) return 'How much do you trust your advisor? MODERATE TRUST';
if (trust >= 3) return 'How much do you trust your advisor? LOW TRUST';
return 'How much do you trust your advisor?';
},
min: 1,
max: 10,
step: 1,
defaultValue: 7,
showValue: true
});
});
 
trustSection.addRow(row => {
row.addMatrixQuestion('trustMatrix', {
label: 'Rate your confidence in each area',
rows: [
{ id: 'best-interest', label: 'Acts in my best interest', description: 'Puts your needs first', isRequired: true },
{ id: 'transparency', label: 'Transparent about fees', description: 'Clear about costs', isRequired: true },
{ id: 'honest', label: 'Honest and straightforward', description: 'Tells it like it is', isRequired: true },
{ id: 'confidential', label: 'Maintains confidentiality', description: 'Protects your information', isRequired: false },
{ id: 'ethical', label: 'High ethical standards', description: 'Professional integrity', isRequired: false }
],
columns: [
{ id: '1', label: 'Not Confident' },
{ id: '2', label: 'Somewhat' },
{ id: '3', label: 'Confident' },
{ id: '4', label: 'Very Confident' },
{ id: '5', label: 'Completely' }
],
striped: true,
fullWidth: true
});
});
 
// ============================================
// SECTION 3: Expertise & Knowledge
// ============================================
const expertiseSection = form.addSubform('expertise', {
title: 'Expertise & Knowledge',
isVisible: () => advisorSection.textbox('advisorName')?.value() !== null && advisorSection.textbox('advisorName')?.value() !== ''
});
 
expertiseSection.addRow(row => {
row.addStarRating('financialKnowledge', {
label: 'Financial & Investment Knowledge',
tooltip: 'Understanding of markets, products, and strategies',
maxStars: 5,
size: 'lg',
alignment: 'left'
}, '1fr');
row.addStarRating('planningSkills', {
label: 'Financial Planning Skills',
tooltip: 'Ability to create comprehensive plans',
maxStars: 5,
size: 'lg',
alignment: 'left'
}, '1fr');
});
 
expertiseSection.addRow(row => {
row.addStarRating('riskManagement', {
label: 'Risk Assessment & Management',
tooltip: 'Understanding your risk tolerance',
maxStars: 5,
size: 'lg',
alignment: 'left'
}, '1fr');
row.addStarRating('marketInsights', {
label: 'Market & Economic Insights',
tooltip: 'Keeping you informed of trends',
maxStars: 5,
size: 'lg',
alignment: 'left'
}, '1fr');
});
 
expertiseSection.addRow(row => {
row.addEmojiRating('confidenceInAdvice', {
label: 'How confident are you in the advice you receive?',
preset: 'satisfaction',
size: 'lg',
showLabels: true,
alignment: 'center'
});
});
 
// ============================================
// SECTION 4: Communication & Service
// ============================================
const communicationSection = form.addSubform('communication', {
title: 'Communication & Service',
isVisible: () => advisorSection.textbox('advisorName')?.value() !== null && advisorSection.textbox('advisorName')?.value() !== ''
});
 
communicationSection.addRow(row => {
row.addMatrixQuestion('communicationMatrix', {
label: 'Rate your advisor\'s communication',
rows: [
{ id: 'responsive', label: 'Responsiveness', description: 'Returns calls/emails promptly', isRequired: true },
{ id: 'proactive', label: 'Proactive Outreach', description: 'Reaches out with updates', isRequired: true },
{ id: 'explains', label: 'Clear Explanations', description: 'Explains concepts understandably', isRequired: true },
{ id: 'listens', label: 'Active Listening', description: 'Understands your concerns', isRequired: true },
{ id: 'available', label: 'Availability', description: 'Easy to reach when needed', isRequired: false }
],
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
});
});
 
communicationSection.addRow(row => {
row.addCheckboxList('communicationChannels', {
label: 'Which communication methods work best for you?',
options: [
{ id: 'phone', name: 'Phone calls' },
{ id: 'email', name: 'Email updates' },
{ id: 'video', name: 'Video meetings' },
{ id: 'in-person', name: 'In-person meetings' },
{ id: 'portal', name: 'Client portal' },
{ id: 'text', name: 'Text messages' }
],
orientation: 'horizontal'
});
});
 
// ============================================
// SECTION 5: Value & Results
// ============================================
const valueSection = form.addSubform('value', {
title: 'Value & Results',
isVisible: () => advisorSection.textbox('advisorName')?.value() !== null && advisorSection.textbox('advisorName')?.value() !== ''
});
 
valueSection.addRow(row => {
row.addStarRating('valueForFees', {
label: 'Value for fees paid',
tooltip: 'Is the service worth what you pay?',
maxStars: 5,
size: 'lg',
alignment: 'center'
}, '1fr');
row.addStarRating('goalProgress', {
label: 'Progress toward your financial goals',
tooltip: 'Are you on track?',
maxStars: 5,
size: 'lg',
alignment: 'center'
}, '1fr');
});
 
valueSection.addRow(row => {
row.addRadioButton('performanceSatisfaction', {
label: 'How satisfied are you with portfolio performance (relative to expectations)?',
options: [
{ id: 'very', name: 'Very satisfied - Exceeded expectations' },
{ id: 'satisfied', name: 'Satisfied - Met expectations' },
{ id: 'neutral', name: 'Neutral - About what I expected' },
{ id: 'dissatisfied', name: 'Dissatisfied - Below expectations' },
{ id: 'very-dissatisfied', name: 'Very dissatisfied' }
],
orientation: 'vertical'
});
});
 
valueSection.addRow(row => {
row.addSuggestionChips('additionalServices', {
label: 'What additional services would be valuable to you?',
suggestions: [
{ id: 'tax', name: 'Tax Optimization' },
{ id: 'estate', name: 'Estate Planning' },
{ id: 'insurance', name: 'Insurance Review' },
{ id: 'education', name: 'College Planning' },
{ id: 'charitable', name: 'Charitable Giving' },
{ id: 'business', name: 'Business Planning' },
{ id: 'family', name: 'Family Meetings' },
{ id: 'reports', name: 'Enhanced Reporting' }
],
max: 3,
alignment: 'center'
});
});
 
// ============================================
// SECTION 6: Overall Rating & Recommendation
// ============================================
const overallSection = form.addSubform('overall', {
title: 'Overall Assessment',
isVisible: () => advisorSection.textbox('advisorName')?.value() !== null && advisorSection.textbox('advisorName')?.value() !== '',
customStyles: () => {
const nps = overallSection.ratingScale('advisorNps')?.npsCategory();
if (nps === 'promoter') return { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px' };
if (nps === 'passive') return { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' };
if (nps === 'detractor') return { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px' };
return { padding: '16px', borderRadius: '8px', border: '1px dashed #cbd5e1' };
}
});
 
overallSection.addRow(row => {
row.addStarRating('overallRating', {
label: () => {
const name = advisorSection.textbox('advisorName')?.value() || 'your advisor';
return `Overall satisfaction with ${name}`;
},
maxStars: 5,
size: 'xl',
alignment: 'center',
showConfettiOnMax: true
});
});
 
overallSection.addRow(row => {
row.addRatingScale('advisorNps', {
preset: 'nps',
label: 'How likely are you to recommend this advisor to friends or family?',
showSegmentColors: true,
showCategoryLabel: true,
showConfettiOnPromoter: true,
alignment: 'center',
isRequired: true
});
});
 
overallSection.addRow(row => {
row.addRadioButton('continueWorking', {
label: 'Do you plan to continue working with this advisor?',
options: [
{ id: 'definitely', name: 'Definitely yes - Long-term relationship' },
{ id: 'likely', name: 'Likely yes' },
{ id: 'unsure', name: 'Unsure - Need to evaluate' },
{ id: 'unlikely', name: 'Unlikely - Considering alternatives' },
{ id: 'no', name: 'No - Planning to change advisors' }
],
orientation: 'vertical'
});
});
 
// Concern section for at-risk clients
const concernSection = form.addSubform('concerns', {
title: 'We Want to Help',
isVisible: () => {
const cont = overallSection.radioButton('continueWorking')?.value();
return cont === 'unsure' || cont === 'unlikely' || cont === 'no';
},
customStyles: {
backgroundColor: '#fef3c7',
padding: '16px',
borderRadius: '8px',
borderLeft: '4px solid #f59e0b'
}
});
 
concernSection.addRow(row => {
row.addTextarea('concernDetails', {
label: 'Please help us understand your concerns',
placeholder: 'What would need to change for you to feel more confident in this relationship?',
rows: 3,
autoExpand: true
});
});
 
concernSection.addRow(row => {
row.addCheckbox('contactMe', {
label: 'I would like someone from the firm to contact me about my concerns'
});
});
 
// ============================================
// SECTION 7: Additional Feedback
// ============================================
const feedbackSection = form.addSubform('feedback', {
title: 'Additional Comments',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
feedbackSection.addSpacer();
 
feedbackSection.addRow(row => {
row.addTextarea('additionalFeedback', {
label: 'Any additional feedback for your advisor or our firm?',
placeholder: 'Share any other thoughts, suggestions, or specific experiences...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 8: Summary
// ============================================
const summarySection = form.addSubform('summary', {
title: 'Feedback Summary',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const advisorName = advisorSection.textbox('advisorName')?.value() || 'Advisor';
const duration = advisorSection.dropdown('relationshipLength')?.value();
const overall = overallSection.starRating('overallRating')?.value();
const nps = overallSection.ratingScale('advisorNps')?.npsCategory();
const trust = trustSection.slider('trustLevel')?.value();
const knowledge = expertiseSection.starRating('financialKnowledge')?.value();
const planning = expertiseSection.starRating('planningSkills')?.value();
const value = valueSection.starRating('valueForFees')?.value();
const continueWork = overallSection.radioButton('continueWorking')?.value();
 
if (!overall) return '';
 
const durationLabels: Record<string, string> = {
'new': '< 1 year',
'1-3': '1-3 years',
'3-5': '3-5 years',
'5-10': '5-10 years',
'10+': '10+ years'
};
 
const continueLabels: Record<string, string> = {
'definitely': 'Long-term',
'likely': 'Likely',
'unsure': 'Evaluating',
'unlikely': 'At Risk',
'no': 'Leaving'
};
 
let summary = `ADVISOR SCORECARD\n`;
summary += `${'═'.repeat(24)}\n\n`;
summary += `Advisor: ${advisorName}\n`;
summary += `Tenure: ${durationLabels[duration || ''] || 'Unknown'}\n`;
summary += `\n${'─'.repeat(24)}\n\n`;
summary += `Overall: ${'★'.repeat(overall)}${'☆'.repeat(5 - overall)} (${overall}/5)\n`;
 
if (trust) {
summary += `Trust Level: ${trust}/10\n`;
}
if (knowledge) {
summary += `Knowledge: ${'★'.repeat(knowledge)}${'☆'.repeat(5 - knowledge)}\n`;
}
if (value) {
summary += `Value: ${'★'.repeat(value)}${'☆'.repeat(5 - value)}\n`;
}
 
if (nps) {
summary += `\nNPS: ${nps.charAt(0).toUpperCase() + nps.slice(1)}\n`;
}
if (continueWork) {
summary += `Retention: ${continueLabels[continueWork]}`;
}
 
return summary;
},
customStyles: () => {
const nps = overallSection.ratingScale('advisorNps')?.npsCategory();
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '13px'
};
 
if (nps === 'promoter') {
return { ...baseStyles, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
} else if (nps === 'passive') {
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
} else if (nps === 'detractor') {
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
return { ...baseStyles, backgroundColor: '#f8fafc', borderLeft: '4px solid #64748b' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback',
isVisible: () => overallSection.ratingScale('advisorNps')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Feedback',
message: 'Your confidential feedback is invaluable in helping us maintain the highest standards of financial advice and client service. We take every response seriously.'
});
}
 

Frequently Asked Questions

How often should clients evaluate their financial advisor?

Annual comprehensive reviews are standard, typically around the anniversary of the relationship or after annual portfolio reviews. Additional brief pulse checks can be sent after significant interactions like major financial decisions or life events.

Why is trust measurement so important for financial advisors?

Trust is the foundation of financial advisory relationships. Clients entrust advisors with their life savings and financial futures. High trust scores correlate with client retention, referrals, and assets under management growth. Low trust is an early indicator of potential client departure.

What's a good satisfaction score for financial advisors?

In financial services, expectations are high. A score of 4.5/5.0 or above is considered excellent. Scores below 4.0 may indicate relationship risk. Compare advisor scores against practice averages and consider client tenure - longer relationships often have higher expectations.

How do I handle negative feedback about a specific advisor?

Treat it as an opportunity to save the relationship. Reach out personally within 48 hours to understand concerns. Many clients appreciate proactive response to feedback. For recurring issues across multiple clients, consider coaching or training interventions.

Should I ask about performance returns?

Focus on communication about performance rather than returns themselves, which depend on market conditions. Ask about explanation clarity, expectation setting, and how well the advisor contextualizes performance. This provides more actionable feedback.