Consulting Fee Calculator

Price your consulting services confidently with this comprehensive calculator. Whether you're a management consultant, business advisor, or technical expert, factor in your expertise level, engagement type (hourly, project, retainer), industry specialization, and deliverables. Generate professional quotes that reflect the value you deliver. Perfect for independent consultants, consulting firms, and businesses budgeting for advisory services.

Freelance & Business

Try the Calculator

Consulting Fee Calculator
💼 Consulting Type
⭐ Expertise Level
 
📋 Engagement Details
 
📊 Deliverables

📊 Fee Breakdown
$ 275.00
$ 0.00
$ 1,250.00
💰 Your Quote
$ 275.00
per hour
$ 12,250.00
📋 Summary
Management consulting project
Fees are estimates based on market rates. Final pricing may vary based on specific requirements and scope.
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
export function consultingFeeCalculator(form: FormTs) {
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Consulting Fee Calculator',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Consulting Type Section
const typeSection = form.addSubform('type', { title: '💼 Consulting Type' });
 
typeSection.addRow(row => {
row.addDropdown('specialty', {
label: 'Consulting Specialty',
options: [
{ id: 'management', name: 'Management Consulting' },
{ id: 'strategy', name: 'Strategy Consulting' },
{ id: 'operations', name: 'Operations Consulting' },
{ id: 'hr', name: 'HR / Organizational' },
{ id: 'financial', name: 'Financial Advisory' },
{ id: 'marketing', name: 'Marketing / Brand Consulting' },
{ id: 'it', name: 'IT / Technology Consulting' },
{ id: 'legal', name: 'Legal Consulting' },
{ id: 'healthcare', name: 'Healthcare Consulting' },
{ id: 'sustainability', name: 'Sustainability / ESG' }
],
defaultValue: 'management',
isRequired: true
}, '1fr');
row.addDropdown('industry', {
label: 'Client Industry',
options: [
{ id: 'general', name: 'General / Multiple' },
{ id: 'technology', name: 'Technology / SaaS' },
{ id: 'finance', name: 'Financial Services' },
{ id: 'healthcare', name: 'Healthcare' },
{ id: 'manufacturing', name: 'Manufacturing' },
{ id: 'retail', name: 'Retail / E-commerce' },
{ id: 'energy', name: 'Energy / Utilities' },
{ id: 'government', name: 'Government / Public Sector' },
{ id: 'nonprofit', name: 'Non-profit' }
],
defaultValue: 'general',
tooltip: 'Industry specialization affects rates'
}, '1fr');
});
 
// Expertise Section
const expertiseSection = form.addSubform('expertise', { title: '⭐ Expertise Level' });
 
expertiseSection.addRow(row => {
row.addRadioButton('level', {
label: 'Experience Level',
options: [
{ id: 'junior', name: 'Junior Consultant (1-3 years)' },
{ id: 'mid', name: 'Consultant (4-7 years)' },
{ id: 'senior', name: 'Senior Consultant (8-15 years)' },
{ id: 'principal', name: 'Principal / Partner (15+ years)' }
],
defaultValue: 'senior',
isRequired: true
});
});
 
expertiseSection.addRow(row => {
row.addDropdown('firmType', {
label: 'Consultant Type',
options: [
{ id: 'independent', name: 'Independent Consultant' },
{ id: 'boutique', name: 'Boutique Firm' },
{ id: 'mid-size', name: 'Mid-size Firm' },
{ id: 'big4', name: 'Big 4 / Top Tier Firm' }
],
defaultValue: 'independent',
tooltip: 'Firm type affects market rates'
});
});
 
// Engagement Section
const engagementSection = form.addSubform('engagement', { title: '📋 Engagement Details' });
 
engagementSection.addRow(row => {
row.addDropdown('engagementType', {
label: 'Engagement Type',
options: [
{ id: 'hourly', name: 'Hourly Advisory' },
{ id: 'daily', name: 'Daily Rate' },
{ id: 'project', name: 'Fixed Project Fee' },
{ id: 'retainer', name: 'Monthly Retainer' }
],
defaultValue: 'project',
isRequired: true
}, '1fr');
row.addDropdown('projectSize', {
label: 'Project Scope',
options: [
{ id: 'small', name: 'Small (1-2 weeks)' },
{ id: 'medium', name: 'Medium (1-2 months)' },
{ id: 'large', name: 'Large (3-6 months)' },
{ id: 'enterprise', name: 'Enterprise (6+ months)' }
],
defaultValue: 'medium',
isVisible: () => engagementSection.dropdown('engagementType')?.value() === 'project'
}, '1fr');
});
 
engagementSection.addRow(row => {
row.addInteger('hours', {
label: 'Estimated Hours',
min: 1,
max: 2000,
defaultValue: 40,
isVisible: () => ['hourly', 'project'].includes(engagementSection.dropdown('engagementType')?.value() || '')
}, '1fr');
row.addInteger('days', {
label: 'Number of Days',
min: 1,
max: 365,
defaultValue: 5,
isVisible: () => engagementSection.dropdown('engagementType')?.value() === 'daily'
}, '1fr');
row.addInteger('months', {
label: 'Retainer Duration (Months)',
min: 1,
max: 24,
defaultValue: 6,
isVisible: () => engagementSection.dropdown('engagementType')?.value() === 'retainer'
}, '1fr');
});
 
engagementSection.addRow(row => {
row.addInteger('hoursPerMonth', {
label: 'Hours per Month',
min: 5,
max: 160,
defaultValue: 20,
isVisible: () => engagementSection.dropdown('engagementType')?.value() === 'retainer',
tooltip: 'Guaranteed hours included in retainer'
});
});
 
// Deliverables Section
const deliverablesSection = form.addSubform('deliverables', { title: '📊 Deliverables' });
 
deliverablesSection.addRow(row => {
row.addCheckbox('strategyDoc', {
label: 'Strategy Document',
defaultValue: true,
tooltip: 'Written strategic recommendations'
}, '1fr');
row.addCheckbox('presentation', {
label: 'Executive Presentation',
defaultValue: true,
tooltip: 'Board/leadership presentation'
}, '1fr');
});
 
deliverablesSection.addRow(row => {
row.addCheckbox('implementation', {
label: 'Implementation Roadmap',
defaultValue: false,
tooltip: 'Detailed action plan with timelines'
}, '1fr');
row.addCheckbox('workshops', {
label: 'Workshop Facilitation',
defaultValue: false,
tooltip: 'Team workshops or training sessions'
}, '1fr');
});
 
deliverablesSection.addRow(row => {
row.addCheckbox('analysis', {
label: 'Data Analysis & Insights',
defaultValue: false,
tooltip: 'Quantitative analysis and reporting'
}, '1fr');
row.addCheckbox('ongoing', {
label: 'Ongoing Support',
defaultValue: false,
tooltip: 'Post-project advisory calls'
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Pricing Breakdown
const breakdownSection = form.addSubform('breakdown', { title: '📊 Fee Breakdown', isCollapsible: true });
 
breakdownSection.addRow(row => {
row.addPriceDisplay('baseRate', {
label: 'Base Hourly Rate',
computedValue: () => {
const level = expertiseSection.radioButton('level')?.value() || 'senior';
const firmType = expertiseSection.dropdown('firmType')?.value() || 'independent';
const specialty = typeSection.dropdown('specialty')?.value() || 'management';
 
// Base rates by level
const levelRates: Record<string, number> = {
'junior': 100, 'mid': 175, 'senior': 275, 'principal': 450
};
 
// Firm multipliers
const firmMultipliers: Record<string, number> = {
'independent': 1, 'boutique': 1.15, 'mid-size': 1.3, 'big4': 1.6
};
 
// Specialty multipliers
const specialtyMultipliers: Record<string, number> = {
'management': 1, 'strategy': 1.2, 'operations': 0.95, 'hr': 0.9,
'financial': 1.15, 'marketing': 0.95, 'it': 1.1, 'legal': 1.25,
'healthcare': 1.15, 'sustainability': 1.05
};
 
const rate = (levelRates[level] || 275) * (firmMultipliers[firmType] || 1) * (specialtyMultipliers[specialty] || 1);
return Math.round(rate * 100) / 100;
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('industryAdjustment', {
label: 'Industry Premium',
computedValue: () => {
const level = expertiseSection.radioButton('level')?.value() || 'senior';
const firmType = expertiseSection.dropdown('firmType')?.value() || 'independent';
const industry = typeSection.dropdown('industry')?.value() || 'general';
 
const levelRates: Record<string, number> = { 'junior': 100, 'mid': 175, 'senior': 275, 'principal': 450 };
const firmMultipliers: Record<string, number> = { 'independent': 1, 'boutique': 1.15, 'mid-size': 1.3, 'big4': 1.6 };
const baseRate = (levelRates[level] || 275) * (firmMultipliers[firmType] || 1);
 
const industryPremiums: Record<string, number> = {
'general': 0, 'technology': 0.15, 'finance': 0.2, 'healthcare': 0.15,
'manufacturing': 0.05, 'retail': 0, 'energy': 0.1, 'government': -0.1, 'nonprofit': -0.2
};
 
return Math.round(baseRate * (industryPremiums[industry] || 0) * 100) / 100;
},
variant: 'default'
}, '1fr');
});
 
breakdownSection.addRow(row => {
row.addPriceDisplay('deliverablesFee', {
label: 'Deliverables Premium',
computedValue: () => {
let premium = 0;
if (deliverablesSection.checkbox('strategyDoc')?.value()) premium += 500;
if (deliverablesSection.checkbox('presentation')?.value()) premium += 750;
if (deliverablesSection.checkbox('implementation')?.value()) premium += 1500;
if (deliverablesSection.checkbox('workshops')?.value()) premium += 2000;
if (deliverablesSection.checkbox('analysis')?.value()) premium += 1000;
if (deliverablesSection.checkbox('ongoing')?.value()) premium += 500;
return premium;
},
variant: 'default'
});
});
 
// Quote Section
const quoteSection = form.addSubform('quote', { title: '💰 Your Quote', isCollapsible: false });
 
quoteSection.addRow(row => {
row.addPriceDisplay('effectiveRate', {
label: 'Effective Rate',
computedValue: () => {
const engagementType = engagementSection.dropdown('engagementType')?.value() || 'project';
const level = expertiseSection.radioButton('level')?.value() || 'senior';
const firmType = expertiseSection.dropdown('firmType')?.value() || 'independent';
const specialty = typeSection.dropdown('specialty')?.value() || 'management';
const industry = typeSection.dropdown('industry')?.value() || 'general';
 
const levelRates: Record<string, number> = { 'junior': 100, 'mid': 175, 'senior': 275, 'principal': 450 };
const firmMultipliers: Record<string, number> = { 'independent': 1, 'boutique': 1.15, 'mid-size': 1.3, 'big4': 1.6 };
const specialtyMultipliers: Record<string, number> = {
'management': 1, 'strategy': 1.2, 'operations': 0.95, 'hr': 0.9,
'financial': 1.15, 'marketing': 0.95, 'it': 1.1, 'legal': 1.25,
'healthcare': 1.15, 'sustainability': 1.05
};
const industryMultipliers: Record<string, number> = {
'general': 1, 'technology': 1.15, 'finance': 1.2, 'healthcare': 1.15,
'manufacturing': 1.05, 'retail': 1, 'energy': 1.1, 'government': 0.9, 'nonprofit': 0.8
};
 
let rate = (levelRates[level] || 275) * (firmMultipliers[firmType] || 1) * (specialtyMultipliers[specialty] || 1) * (industryMultipliers[industry] || 1);
 
if (engagementType === 'daily') {
return Math.round(rate * 8 * 100) / 100;
} else if (engagementType === 'retainer') {
return Math.round(rate * 0.85 * 100) / 100; // Retainer discount
}
 
return Math.round(rate * 100) / 100;
},
variant: 'success'
}, '1fr');
row.addTextPanel('rateLabel', {
computedValue: () => {
const engagementType = engagementSection.dropdown('engagementType')?.value() || 'project';
const labels: Record<string, string> = {
'hourly': 'per hour', 'daily': 'per day', 'project': 'per hour', 'retainer': 'per hour (discounted)'
};
return labels[engagementType] || 'per hour';
},
customStyles: { 'font-size': '1rem', 'text-align': 'center', 'color': '#64748b', 'padding-top': '0.5rem' }
}, '1fr');
});
 
quoteSection.addRow(row => {
row.addPriceDisplay('totalFee', {
label: 'Total Project Fee',
computedValue: () => {
const engagementType = engagementSection.dropdown('engagementType')?.value() || 'project';
const level = expertiseSection.radioButton('level')?.value() || 'senior';
const firmType = expertiseSection.dropdown('firmType')?.value() || 'independent';
const specialty = typeSection.dropdown('specialty')?.value() || 'management';
const industry = typeSection.dropdown('industry')?.value() || 'general';
const hours = engagementSection.integer('hours')?.value() || 40;
const days = engagementSection.integer('days')?.value() || 5;
const months = engagementSection.integer('months')?.value() || 6;
const hoursPerMonth = engagementSection.integer('hoursPerMonth')?.value() || 20;
 
const levelRates: Record<string, number> = { 'junior': 100, 'mid': 175, 'senior': 275, 'principal': 450 };
const firmMultipliers: Record<string, number> = { 'independent': 1, 'boutique': 1.15, 'mid-size': 1.3, 'big4': 1.6 };
const specialtyMultipliers: Record<string, number> = {
'management': 1, 'strategy': 1.2, 'operations': 0.95, 'hr': 0.9,
'financial': 1.15, 'marketing': 0.95, 'it': 1.1, 'legal': 1.25,
'healthcare': 1.15, 'sustainability': 1.05
};
const industryMultipliers: Record<string, number> = {
'general': 1, 'technology': 1.15, 'finance': 1.2, 'healthcare': 1.15,
'manufacturing': 1.05, 'retail': 1, 'energy': 1.1, 'government': 0.9, 'nonprofit': 0.8
};
 
const rate = (levelRates[level] || 275) * (firmMultipliers[firmType] || 1) * (specialtyMultipliers[specialty] || 1) * (industryMultipliers[industry] || 1);
 
let total = 0;
if (engagementType === 'hourly') {
total = rate * hours;
} else if (engagementType === 'daily') {
total = rate * 8 * days;
} else if (engagementType === 'project') {
total = rate * hours;
} else if (engagementType === 'retainer') {
total = rate * 0.85 * hoursPerMonth * months;
}
 
// Add deliverables
if (deliverablesSection.checkbox('strategyDoc')?.value()) total += 500;
if (deliverablesSection.checkbox('presentation')?.value()) total += 750;
if (deliverablesSection.checkbox('implementation')?.value()) total += 1500;
if (deliverablesSection.checkbox('workshops')?.value()) total += 2000;
if (deliverablesSection.checkbox('analysis')?.value()) total += 1000;
if (deliverablesSection.checkbox('ongoing')?.value()) total += 500;
 
return Math.round(total * 100) / 100;
},
variant: 'large'
});
});
 
// Summary Section
const summarySection = form.addSubform('summary', {
title: '📋 Summary',
isCollapsible: false,
sticky: 'bottom'
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryText', {
computedValue: () => {
const specialty = typeSection.dropdown('specialty')?.value() || 'management';
const engagementType = engagementSection.dropdown('engagementType')?.value() || 'project';
const specialtyLabels: Record<string, string> = {
'management': 'Management', 'strategy': 'Strategy', 'operations': 'Operations',
'hr': 'HR', 'financial': 'Financial', 'marketing': 'Marketing',
'it': 'IT', 'legal': 'Legal', 'healthcare': 'Healthcare', 'sustainability': 'ESG'
};
const engagementLabels: Record<string, string> = {
'hourly': 'hourly advisory', 'daily': 'daily engagement', 'project': 'project', 'retainer': 'retainer'
};
return `${specialtyLabels[specialty] || 'Management'} consulting ${engagementLabels[engagementType] || 'project'}`;
},
customStyles: { 'font-size': '0.95rem', 'font-weight': '500', 'text-align': 'center', 'color': '#1e293b' }
});
});
 
summarySection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'Fees are estimates based on market rates. Final pricing may vary based on specific requirements and scope.',
customStyles: { 'font-size': '0.8rem', 'color': '#64748b', 'text-align': 'center' }
});
});
 
form.configureSubmitButton({
label: 'Request Proposal'
});
}
 

Frequently Asked Questions

How do consultants typically charge?

Consultants charge hourly ($100-500+/hour), daily ($1,000-5,000+), by project (fixed fee), or on retainer (monthly fee for ongoing access). Rates depend on expertise, industry, and value delivered.

What factors affect consulting rates?

Key factors include years of experience, industry specialization, complexity of the engagement, deliverables required, timeline, and the consultant's track record of results.

Should I charge hourly or project-based?

Project-based fees are often better for defined scopes as they reward efficiency. Hourly works well for advisory or open-ended engagements. Retainers suit ongoing relationships.

How do I justify higher consulting fees?

Focus on value delivered, not time spent. Quantify potential ROI, reference past client results, and emphasize specialized expertise that saves clients money or generates revenue.