Company Formation Calculator

Help clients understand the full cost of forming a business entity with this interactive calculator. Cover all entity types including LLC, C-Corp, S-Corp, Partnership, and Non-Profit. Factor in state filing fees, registered agent services, operating agreements, and ongoing compliance. Perfect for law firms, business formation services, and accounting firms. Fully customizable pricing and service packages.

Legal Services

Try the Calculator

Company Formation Cost Calculator
๐Ÿข Business Entity
โš–๏ธ Formation Services
๐Ÿ“„ Legal Documents
โœจ Ongoing Compliance

๐Ÿ’ฐ Cost Estimate
$ 90.00
$ 500.00
$ 99.00
+
$ 350.00
+
$ 100.00
๐Ÿงพ Total Investment
$ 1,139.00
Estimated Timeline: 5-10 business days
This estimate is for planning purposes only. State fees are subject to change. Actual formation time varies by state and processing volume.
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
export function companyFormationCalculator(form: FormTs) {
// State filing fees (representative sample - actual fees vary)
const stateFees: Record<string, { llc: number, corp: number, expedite: number }> = {
'delaware': { llc: 90, corp: 89, expedite: 50 },
'wyoming': { llc: 100, corp: 100, expedite: 50 },
'nevada': { llc: 425, corp: 725, expedite: 125 },
'california': { llc: 70, corp: 100, expedite: 350 },
'texas': { llc: 300, corp: 300, expedite: 25 },
'florida': { llc: 125, corp: 70, expedite: 50 },
'new-york': { llc: 200, corp: 125, expedite: 75 },
'other': { llc: 150, corp: 150, expedite: 50 }
};
 
// Entity type base service fees
const entityFees: Record<string, number> = {
'llc': 500,
'c-corp': 750,
's-corp': 800,
'partnership': 600,
'lp': 650,
'non-profit': 1000,
'sole-prop': 200
};
 
// Document fees
const documentFees: Record<string, number> = {
'operating-agreement': 350,
'bylaws': 400,
'partnership-agreement': 500,
'shareholder-agreement': 600,
'minutes': 200,
'resolutions': 150,
'ein': 0,
'banking-resolution': 100
};
 
// Registered agent annual fees by state type
const agentFees: Record<string, number> = {
'basic': 99,
'premium': 199,
'self': 0
};
 
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Company Formation Cost Calculator',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Entity Selection Section
const entitySection = form.addSubform('entity', { title: '๐Ÿข Business Entity' });
 
entitySection.addRow(row => {
row.addDropdown('entityType', {
label: 'Entity Type',
options: [
{ id: 'llc', name: 'Limited Liability Company (LLC)' },
{ id: 'c-corp', name: 'C-Corporation' },
{ id: 's-corp', name: 'S-Corporation' },
{ id: 'partnership', name: 'General Partnership' },
{ id: 'lp', name: 'Limited Partnership (LP)' },
{ id: 'non-profit', name: 'Non-Profit Organization' },
{ id: 'sole-prop', name: 'Sole Proprietorship (DBA)' }
],
defaultValue: 'llc',
isRequired: true
}, '1fr');
row.addDropdown('state', {
label: 'Formation State',
options: [
{ id: 'delaware', name: 'Delaware (Most popular)' },
{ id: 'wyoming', name: 'Wyoming (Low fees)' },
{ id: 'nevada', name: 'Nevada (Privacy)' },
{ id: 'california', name: 'California' },
{ id: 'texas', name: 'Texas' },
{ id: 'florida', name: 'Florida' },
{ id: 'new-york', name: 'New York' },
{ id: 'other', name: 'Other State' }
],
defaultValue: 'delaware',
isRequired: true
}, '1fr');
});
 
entitySection.addRow(row => {
row.addDropdown('members', {
label: 'Number of Owners/Members',
options: [
{ id: '1', name: 'Single Member / Owner' },
{ id: '2-5', name: '2-5 Members / Shareholders' },
{ id: '6-10', name: '6-10 Members / Shareholders' },
{ id: '10+', name: '10+ Members / Shareholders' }
],
defaultValue: '1',
isRequired: true
}, '1fr');
row.addDropdown('processing', {
label: 'Processing Speed',
options: [
{ id: 'standard', name: 'Standard (5-10 business days)' },
{ id: 'expedited', name: 'Expedited (2-3 business days)' },
{ id: 'rush', name: 'Rush / Same Day (if available)' }
],
defaultValue: 'standard',
isRequired: true
}, '1fr');
});
 
// Services Section
const servicesSection = form.addSubform('services', { title: 'โš–๏ธ Formation Services' });
 
servicesSection.addRow(row => {
row.addDropdown('registeredAgent', {
label: 'Registered Agent Service',
options: [
{ id: 'basic', name: 'Basic Agent ($99/year)' },
{ id: 'premium', name: 'Premium Agent ($199/year)' },
{ id: 'self', name: 'Self (I\'ll be my own agent)' }
],
defaultValue: 'basic',
isRequired: true
}, '1fr');
row.addDropdown('agentYears', {
label: 'Agent Service Duration',
options: [
{ id: '1', name: '1 Year' },
{ id: '2', name: '2 Years (5% discount)' },
{ id: '3', name: '3 Years (10% discount)' }
],
defaultValue: '1',
isVisible: () => {
const agent = servicesSection.dropdown('registeredAgent')?.value();
return agent !== 'self';
}
}, '1fr');
});
 
servicesSection.addRow(row => {
row.addCheckbox('einApplication', {
label: 'EIN / Tax ID Application (Included)',
defaultValue: true
}, '1fr');
row.addCheckbox('foreignQualification', {
label: 'Foreign Qualification (if doing business in another state)',
defaultValue: false
}, '1fr');
});
 
// Documents Section
const documentsSection = form.addSubform('documents', { title: '๐Ÿ“„ Legal Documents' });
 
documentsSection.addRow(row => {
row.addCheckbox('operatingAgreement', {
label: 'Operating Agreement / Bylaws',
defaultValue: true
}, '1fr');
row.addDropdown('agreementType', {
label: 'Document Complexity',
options: [
{ id: 'basic', name: 'Basic Template' },
{ id: 'standard', name: 'Standard (+$200)' },
{ id: 'custom', name: 'Fully Custom (+$500)' }
],
defaultValue: 'basic',
isVisible: () => documentsSection.checkbox('operatingAgreement')?.value() === true
}, '1fr');
});
 
documentsSection.addRow(row => {
row.addCheckbox('shareholderAgreement', {
label: 'Shareholder / Member Agreement',
defaultValue: false,
isVisible: () => {
const members = entitySection.dropdown('members')?.value();
return members !== '1';
}
}, '1fr');
row.addCheckbox('minutes', {
label: 'Initial Minutes & Resolutions',
defaultValue: false
}, '1fr');
});
 
documentsSection.addRow(row => {
row.addCheckbox('bankingResolution', {
label: 'Banking Resolution',
defaultValue: false
}, '1fr');
row.addCheckbox('companyKit', {
label: 'Physical Company Kit (binder, seal)',
defaultValue: false
}, '1fr');
});
 
// Compliance Section
const complianceSection = form.addSubform('compliance', { title: 'โœจ Ongoing Compliance' });
 
complianceSection.addRow(row => {
row.addCheckbox('annualReport', {
label: 'Annual Report Filing Service',
defaultValue: false
}, '1fr');
row.addCheckbox('complianceReminders', {
label: 'Compliance Calendar & Reminders',
defaultValue: true
}, '1fr');
});
 
complianceSection.addRow(row => {
row.addCheckbox('boiReport', {
label: 'BOI Report Filing (FinCEN)',
defaultValue: true
}, '1fr');
row.addCheckbox('bookkeepingSetup', {
label: 'Bookkeeping Setup Consultation',
defaultValue: false
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Summary Section
const summarySection = form.addSubform('summary', { title: '๐Ÿ’ฐ Cost Estimate', isCollapsible: false });
 
summarySection.addRow(row => {
row.addPriceDisplay('stateFees', {
label: 'State Filing Fees',
computedValue: () => {
const entityType = entitySection.dropdown('entityType')?.value() || 'llc';
const state = entitySection.dropdown('state')?.value() || 'delaware';
const processing = entitySection.dropdown('processing')?.value() || 'standard';
 
const stateData = stateFees?.[state] ?? stateFees['other'];
let fee = (entityType.includes('corp') || entityType === 's-corp' ? stateData?.corp : stateData?.llc) ?? 0;
 
// Expedite fees
if (processing === 'expedited') fee += stateData?.expedite ?? 0;
else if (processing === 'rush') fee += stateData?.expedite ?? 0 * 2;
 
// Foreign qualification
if (servicesSection.checkbox('foreignQualification')?.value()) {
fee += 250;
}
 
return fee;
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('serviceFees', {
label: 'Formation Service Fee',
computedValue: () => {
const entityType = entitySection.dropdown('entityType')?.value() || 'llc';
const members = entitySection.dropdown('members')?.value() || '1';
 
let baseFee = entityFees?.[entityType] ?? 500;
 
// Multiple members complexity
if (members === '2-5') baseFee *= 1.1;
else if (members === '6-10') baseFee *= 1.2;
else if (members === '10+') baseFee *= 1.4;
 
return Math.round(baseFee);
},
variant: 'default'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('agentFees', {
label: 'Registered Agent',
computedValue: () => {
const agentType = servicesSection.dropdown('registeredAgent')?.value() || 'basic';
const years = parseInt(servicesSection.dropdown('agentYears')?.value() || '1');
 
const baseFee = agentFees?.[agentType] ?? 99;
let total = baseFee * years;
 
// Multi-year discounts
if (years === 2) total *= 0.95;
else if (years === 3) total *= 0.90;
 
return Math.round(total);
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('documentFees', {
label: 'Legal Documents',
computedValue: () => {
const entityType = entitySection.dropdown('entityType')?.value() || 'llc';
let total = 0;
 
if (documentsSection.checkbox('operatingAgreement')?.value()) {
const isCorpType = entityType.includes('corp') || entityType === 's-corp';
let baseDoc = isCorpType ? (documentFees['bylaws'] || 400) : (documentFees['operating-agreement'] || 350);
 
const agreementType = documentsSection.dropdown('agreementType')?.value() || 'basic';
if (agreementType === 'standard') baseDoc += 200;
else if (agreementType === 'custom') baseDoc += 500;
 
total += baseDoc;
}
 
if (documentsSection.checkbox('shareholderAgreement')?.value()) {
total += documentFees['shareholder-agreement'] || 600;
}
 
if (documentsSection.checkbox('minutes')?.value()) {
total += (documentFees['minutes'] || 200) + (documentFees['resolutions'] || 150);
}
 
if (documentsSection.checkbox('bankingResolution')?.value()) {
total += documentFees['banking-resolution'] || 100;
}
 
if (documentsSection.checkbox('companyKit')?.value()) {
total += 75;
}
 
return total;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('complianceFees', {
label: 'Compliance Services',
computedValue: () => {
let total = 0;
 
if (complianceSection.checkbox('annualReport')?.value()) total += 150;
if (complianceSection.checkbox('boiReport')?.value()) total += 100;
if (complianceSection.checkbox('bookkeepingSetup')?.value()) total += 200;
 
return total;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
const finalSection = form.addSubform('final', {
title: '๐Ÿงพ Total Investment',
isCollapsible: false,
sticky: 'bottom'
});
 
finalSection.addRow(row => {
row.addPriceDisplay('totalCost', {
label: 'Total Formation Cost',
computedValue: () => {
const entityType = entitySection.dropdown('entityType')?.value() || 'llc';
const state = entitySection.dropdown('state')?.value() || 'delaware';
const processing = entitySection.dropdown('processing')?.value() || 'standard';
const members = entitySection.dropdown('members')?.value() || '1';
 
// State fees
const stateData = stateFees?.[state] ?? stateFees['other'];
let stateFee = (entityType.includes('corp') || entityType === 's-corp' ? stateData?.corp : stateData?.llc) ?? 0;
if (processing === 'expedited') stateFee += stateData?.expedite ?? 0;
else if (processing === 'rush') stateFee += stateData?.expedite ?? 0 * 2;
if (servicesSection.checkbox('foreignQualification')?.value()) stateFee += 250;
 
// Service fees
let serviceFee = entityFees?.[entityType] ?? 500;
if (members === '2-5') serviceFee *= 1.1;
else if (members === '6-10') serviceFee *= 1.2;
else if (members === '10+') serviceFee *= 1.4;
 
// Agent fees
const agentType = servicesSection.dropdown('registeredAgent')?.value() || 'basic';
const years = parseInt(servicesSection.dropdown('agentYears')?.value() || '1');
let agentFee = (agentFees?.[agentType] ?? 99) * years;
if (years === 2) agentFee *= 0.95;
else if (years === 3) agentFee *= 0.90;
 
// Document fees
let docFee = 0;
if (documentsSection.checkbox('operatingAgreement')?.value()) {
const isCorpType = entityType.includes('corp') || entityType === 's-corp';
let baseDoc = isCorpType ? (documentFees['bylaws'] || 400) : (documentFees['operating-agreement'] || 350);
const agreementType = documentsSection.dropdown('agreementType')?.value() || 'basic';
if (agreementType === 'standard') baseDoc += 200;
else if (agreementType === 'custom') baseDoc += 500;
docFee += baseDoc;
}
if (documentsSection.checkbox('shareholderAgreement')?.value()) docFee += documentFees['shareholder-agreement'] || 600;
if (documentsSection.checkbox('minutes')?.value()) docFee += (documentFees['minutes'] || 200) + (documentFees['resolutions'] || 150);
if (documentsSection.checkbox('bankingResolution')?.value()) docFee += documentFees['banking-resolution'] || 100;
if (documentsSection.checkbox('companyKit')?.value()) docFee += 75;
 
// Compliance fees
let compFee = 0;
if (complianceSection.checkbox('annualReport')?.value()) compFee += 150;
if (complianceSection.checkbox('boiReport')?.value()) compFee += 100;
if (complianceSection.checkbox('bookkeepingSetup')?.value()) compFee += 200;
 
return Math.round(stateFee + serviceFee + agentFee + docFee + compFee);
},
variant: 'large'
});
});
 
finalSection.addRow(row => {
row.addTextPanel('timeline', {
computedValue: () => {
const processing = entitySection.dropdown('processing')?.value() || 'standard';
if (processing === 'rush') return 'Estimated Timeline: 1-2 business days';
if (processing === 'expedited') return 'Estimated Timeline: 2-3 business days';
return 'Estimated Timeline: 5-10 business days';
},
customStyles: { 'font-size': '0.9rem', 'color': '#64748b', 'text-align': 'center' }
});
});
 
finalSection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'This estimate is for planning purposes only. State fees are subject to change. Actual formation time varies by state and processing volume.',
customStyles: { 'font-size': '0.8rem', 'color': '#64748b', 'font-style': 'italic' }
});
});
 
form.configureSubmitButton({
label: 'Start Formation Process'
});
}
 

Frequently Asked Questions

What entity types can this estimate?

The calculator covers LLC, C-Corporation, S-Corporation, Partnership (LP, LLP), Sole Proprietorship registration, and Non-Profit organizations. Each has different formation requirements and costs.

Are state filing fees included?

Yes, state filing fees are estimated based on the selected formation state. Fees vary significantly by state. The calculator shows government fees separately from service fees.

Do I need a registered agent?

Most states require a registered agent with a physical address in the state of formation. The calculator includes registered agent options and annual fees.

What documents are included?

Basic formation includes Articles of Organization/Incorporation. Operating agreements, bylaws, and other governance documents can be added based on your needs.

How long does formation take?

Standard formation takes 1-4 weeks depending on the state. Expedited and rush processing options are available in most states for additional fees.