Electrical Work Calculator

Get accurate cost estimates for any electrical project with this comprehensive calculator. From simple outlet installations to complex panel upgrades and EV charger installations, this tool considers job complexity, accessibility, home age, and additional services to provide realistic price ranges.

Home ServicesPopular

Try the Calculator

Electrical Work Calculator
๐Ÿ“ Your Location
Loading map...
 
๐Ÿ“ Enter address to check service area
โšก Service Type
 
๐Ÿ”Œ Job Details
 
๐Ÿ  Property Details
โœจ Additional Services

๐Ÿ’ฐ Estimated Quote
$ 75.00
$83 - $220
๐Ÿงพ Total Estimate
$158 - $295
Estimate includes typical materials. Complex jobs may require on-site evaluation.
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
export function electricalWorkCalculator(form: FormTs) {
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Electrical Work Calculator',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Service Location Section
const locationSection = form.addSubform('serviceLocation', { title: '๐Ÿ“ Your Location' });
 
locationSection.addRow(row => {
row.addAddress('propertyAddress', {
label: 'Property Address',
placeholder: 'Enter your address...',
showMap: true,
showDistance: true,
referenceAddress: {
formattedAddress: 'Service Center, Denver, CO',
coordinates: { lat: 39.7392, lng: -104.9903 }
},
restrictToCountries: ['US', 'CA'],
distanceUnit: 'miles',
isRequired: true
});
});
 
locationSection.addRow(row => {
row.addTextPanel('serviceAreaInfo', {
computedValue: () => {
const addressField = locationSection.address('propertyAddress');
const miles = addressField?.distance();
if (miles == null) return '๐Ÿ“ Enter address to check service area';
if (miles <= 15) return '๐Ÿ“ Within service area - Standard call fee';
if (miles <= 30) return '๐Ÿ“ Extended area - $40 additional travel';
if (miles <= 50) return '๐Ÿ“ Remote area - $75 additional travel';
return '๐Ÿ“ Outside service area - Please call for availability';
},
customStyles: { 'font-size': '0.9rem', 'color': '#ca8a04', 'background': '#fefce8', 'padding': '10px', 'border-radius': '6px' }
});
});
 
// Service Type Section
const serviceSection = form.addSubform('service', { title: 'โšก Service Type' });
 
serviceSection.addRow(row => {
row.addRadioButton('serviceType', {
label: 'Type of Work',
options: [
{ id: 'repair', name: 'Repair/Troubleshooting' },
{ id: 'installation', name: 'New Installation' },
{ id: 'upgrade', name: 'Upgrade/Replacement' },
{ id: 'inspection', name: 'Inspection/Safety Check' },
{ id: 'emergency', name: 'Emergency Service' }
],
defaultValue: 'repair',
orientation: 'vertical',
isRequired: true
});
});
 
serviceSection.addRow(row => {
row.addDropdown('category', {
label: 'Work Category',
options: [
{ id: 'outlet', name: 'Outlets & Switches' },
{ id: 'lighting', name: 'Lighting & Fixtures' },
{ id: 'panel', name: 'Electrical Panel' },
{ id: 'wiring', name: 'Wiring & Circuits' },
{ id: 'ceiling-fan', name: 'Ceiling Fan' },
{ id: 'ev-charger', name: 'EV Charger Installation' },
{ id: 'generator', name: 'Generator' },
{ id: 'smoke-detector', name: 'Smoke/CO Detectors' },
{ id: 'smart-home', name: 'Smart Home Devices' },
{ id: 'outdoor', name: 'Outdoor/Landscape Lighting' },
{ id: 'other', name: 'Other' }
],
defaultValue: 'outlet',
isRequired: true
}, '1fr');
});
 
// Job Details Section
const jobSection = form.addSubform('job', { title: '๐Ÿ”Œ Job Details' });
 
jobSection.addRow(row => {
row.addInteger('quantity', {
label: () => {
const category = serviceSection.dropdown('category')?.value();
if (category === 'outlet') return 'Number of Outlets/Switches';
if (category === 'lighting') return 'Number of Fixtures';
if (category === 'ceiling-fan') return 'Number of Fans';
if (category === 'smoke-detector') return 'Number of Detectors';
return 'Quantity';
},
min: 1,
max: 50,
defaultValue: 1,
isVisible: () => !['panel', 'wiring', 'ev-charger', 'generator'].includes(serviceSection.dropdown('category')?.value() || '')
}, '1fr');
row.addDropdown('complexity', {
label: 'Job Complexity',
options: [
{ id: 'simple', name: 'Simple - Basic replacement/repair' },
{ id: 'moderate', name: 'Moderate - Some new wiring needed' },
{ id: 'complex', name: 'Complex - Extensive wiring/permits' }
],
defaultValue: 'simple'
}, '1fr');
});
 
jobSection.addRow(row => {
row.addDropdown('panelWork', {
label: 'Panel Work Needed',
options: [
{ id: 'breaker', name: 'Replace Breaker' },
{ id: 'add-circuit', name: 'Add New Circuit' },
{ id: 'subpanel', name: 'Install Sub-Panel' },
{ id: 'upgrade-100', name: 'Upgrade to 100 Amp' },
{ id: 'upgrade-200', name: 'Upgrade to 200 Amp' },
{ id: 'upgrade-400', name: 'Upgrade to 400 Amp' },
{ id: 'replace', name: 'Full Panel Replacement' }
],
defaultValue: 'breaker',
isVisible: () => serviceSection.dropdown('category')?.value() === 'panel'
}, '1fr');
row.addDropdown('evChargerLevel', {
label: 'EV Charger Level',
options: [
{ id: 'level1', name: 'Level 1 (120V)' },
{ id: 'level2-40', name: 'Level 2 - 40 Amp' },
{ id: 'level2-50', name: 'Level 2 - 50 Amp' },
{ id: 'level2-80', name: 'Level 2 - 80 Amp' }
],
defaultValue: 'level2-40',
isVisible: () => serviceSection.dropdown('category')?.value() === 'ev-charger'
}, '1fr');
});
 
jobSection.addRow(row => {
row.addDropdown('generatorType', {
label: 'Generator Type',
options: [
{ id: 'portable-hookup', name: 'Portable Generator Hookup' },
{ id: 'standby-small', name: 'Standby - Small (7-10kW)' },
{ id: 'standby-medium', name: 'Standby - Medium (11-16kW)' },
{ id: 'standby-large', name: 'Standby - Large (17-22kW)' },
{ id: 'whole-home', name: 'Whole Home (22kW+)' }
],
defaultValue: 'standby-medium',
isVisible: () => serviceSection.dropdown('category')?.value() === 'generator'
}, '1fr');
row.addDropdown('wiringScope', {
label: 'Wiring Scope',
options: [
{ id: 'single-room', name: 'Single Room' },
{ id: 'multiple-rooms', name: 'Multiple Rooms' },
{ id: 'whole-floor', name: 'Whole Floor' },
{ id: 'whole-house', name: 'Whole House Rewire' }
],
defaultValue: 'single-room',
isVisible: () => serviceSection.dropdown('category')?.value() === 'wiring'
}, '1fr');
});
 
// Property Details Section
const propertySection = form.addSubform('property', { title: '๐Ÿ  Property Details' });
 
propertySection.addRow(row => {
row.addDropdown('propertyType', {
label: 'Property Type',
options: [
{ id: 'house', name: 'Single Family Home' },
{ id: 'apartment', name: 'Apartment/Condo' },
{ id: 'townhouse', name: 'Townhouse' },
{ id: 'commercial', name: 'Commercial' }
],
defaultValue: 'house'
}, '1fr');
row.addDropdown('accessibility', {
label: 'Access to Work Area',
options: [
{ id: 'easy', name: 'Easy - Exposed/Accessible' },
{ id: 'moderate', name: 'Moderate - Attic/Basement' },
{ id: 'difficult', name: 'Difficult - Behind walls' }
],
defaultValue: 'easy'
}, '1fr');
});
 
propertySection.addRow(row => {
row.addDropdown('homeAge', {
label: 'Home Age',
options: [
{ id: 'new', name: 'Less than 20 years' },
{ id: 'medium', name: '20-40 years' },
{ id: 'old', name: '40-60 years' },
{ id: 'very-old', name: 'Over 60 years' }
],
defaultValue: 'medium'
}, '1fr');
row.addInteger('sqft', {
label: 'Square Footage',
min: 100,
max: 20000,
defaultValue: 2000,
isVisible: () => serviceSection.dropdown('category')?.value() === 'wiring'
}, '1fr');
});
 
// Additional Services Section
const addonsSection = form.addSubform('addons', { title: 'โœจ Additional Services' });
 
addonsSection.addRow(row => {
row.addCheckbox('permit', {
label: 'Permit & Inspection',
defaultValue: false,
tooltip: 'Required for many electrical jobs'
}, '1fr');
row.addCheckbox('diagnosis', {
label: 'Diagnostic Service',
defaultValue: false,
tooltip: 'Troubleshooting unknown issues'
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('surgeProtection', {
label: 'Whole-Home Surge Protection',
defaultValue: false
}, '1fr');
row.addCheckbox('grounding', {
label: 'Grounding/Bonding Check',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('arcFault', {
label: 'Arc-Fault Breakers (AFCI)',
defaultValue: false
}, '1fr');
row.addCheckbox('gfci', {
label: 'GFCI Outlets',
defaultValue: false
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Helper to calculate travel fee
const getTravelFee = () => {
const addressField = locationSection.address('propertyAddress');
const miles = addressField?.distance();
if (miles == null || miles <= 15) return 0;
if (miles <= 30) return 40;
if (miles <= 50) return 75;
return 100 + Math.floor((miles - 50) / 15) * 25;
};
 
// Quote Section
const quoteSection = form.addSubform('quote', { title: '๐Ÿ’ฐ Estimated Quote', isCollapsible: false });
 
const calculateQuote = () => {
const serviceType = serviceSection.radioButton('serviceType')?.value() || 'repair';
const category = serviceSection.dropdown('category')?.value() || 'outlet';
const complexity = jobSection.dropdown('complexity')?.value() || 'simple';
const quantity = jobSection.integer('quantity')?.value() || 1;
const accessibility = propertySection.dropdown('accessibility')?.value() || 'easy';
const homeAge = propertySection.dropdown('homeAge')?.value() || 'medium';
 
// Base prices by category
const categoryPrices: Record<string, { min: number; max: number }> = {
'outlet': { min: 75, max: 200 },
'lighting': { min: 100, max: 350 },
'panel': { min: 200, max: 4000 },
'wiring': { min: 300, max: 8000 },
'ceiling-fan': { min: 150, max: 400 },
'ev-charger': { min: 500, max: 2500 },
'generator': { min: 500, max: 15000 },
'smoke-detector': { min: 50, max: 150 },
'smart-home': { min: 75, max: 250 },
'outdoor': { min: 200, max: 1500 },
'other': { min: 100, max: 500 }
};
 
let baseMin = categoryPrices[category]?.min || 100;
let baseMax = categoryPrices[category]?.max || 500;
 
// Panel work specifics
if (category === 'panel') {
const panelWork = jobSection.dropdown('panelWork')?.value() || 'breaker';
const panelPrices: Record<string, { min: number; max: number }> = {
'breaker': { min: 150, max: 300 },
'add-circuit': { min: 200, max: 500 },
'subpanel': { min: 500, max: 1500 },
'upgrade-100': { min: 1500, max: 2500 },
'upgrade-200': { min: 2000, max: 4000 },
'upgrade-400': { min: 4000, max: 8000 },
'replace': { min: 1500, max: 3500 }
};
baseMin = panelPrices[panelWork]?.min || 200;
baseMax = panelPrices[panelWork]?.max || 1000;
}
 
// EV charger specifics
if (category === 'ev-charger') {
const level = jobSection.dropdown('evChargerLevel')?.value() || 'level2-40';
const evPrices: Record<string, { min: number; max: number }> = {
'level1': { min: 300, max: 600 },
'level2-40': { min: 500, max: 1200 },
'level2-50': { min: 700, max: 1500 },
'level2-80': { min: 1000, max: 2500 }
};
baseMin = evPrices[level]?.min || 500;
baseMax = evPrices[level]?.max || 1500;
}
 
// Generator specifics
if (category === 'generator') {
const genType = jobSection.dropdown('generatorType')?.value() || 'standby-medium';
const genPrices: Record<string, { min: number; max: number }> = {
'portable-hookup': { min: 400, max: 1000 },
'standby-small': { min: 3000, max: 6000 },
'standby-medium': { min: 5000, max: 10000 },
'standby-large': { min: 8000, max: 14000 },
'whole-home': { min: 12000, max: 20000 }
};
baseMin = genPrices[genType]?.min || 5000;
baseMax = genPrices[genType]?.max || 10000;
}
 
// Quantity multiplier (with volume discount)
if (!['panel', 'wiring', 'ev-charger', 'generator'].includes(category)) {
const discount = quantity > 5 ? 0.85 : quantity > 2 ? 0.9 : 1;
baseMin = baseMin * quantity * discount;
baseMax = baseMax * quantity * discount;
}
 
// Complexity multiplier
const complexityMult: Record<string, number> = {
'simple': 1.0,
'moderate': 1.4,
'complex': 2.0
};
baseMin *= complexityMult[complexity] || 1.0;
baseMax *= complexityMult[complexity] || 1.0;
 
// Accessibility multiplier
const accessMult: Record<string, number> = {
'easy': 1.0,
'moderate': 1.25,
'difficult': 1.6
};
baseMin *= accessMult[accessibility] || 1.0;
baseMax *= accessMult[accessibility] || 1.0;
 
// Home age multiplier
const ageMult: Record<string, number> = {
'new': 1.0,
'medium': 1.1,
'old': 1.3,
'very-old': 1.5
};
baseMin *= ageMult[homeAge] || 1.0;
baseMax *= ageMult[homeAge] || 1.0;
 
// Emergency multiplier
if (serviceType === 'emergency') {
baseMin *= 1.5;
baseMax *= 1.5;
}
 
// Service call fee
let serviceFee = 75;
if (serviceType === 'emergency') serviceFee = 150;
 
// Add-ons
let addons = 0;
if (addonsSection.checkbox('permit')?.value()) addons += 150;
if (addonsSection.checkbox('diagnosis')?.value()) addons += 100;
if (addonsSection.checkbox('surgeProtection')?.value()) addons += 300;
if (addonsSection.checkbox('grounding')?.value()) addons += 200;
if (addonsSection.checkbox('arcFault')?.value()) addons += 50 * quantity;
if (addonsSection.checkbox('gfci')?.value()) addons += 30 * quantity;
 
const travelFee = getTravelFee();
const totalMin = serviceFee + baseMin + addons + travelFee;
const totalMax = serviceFee + baseMax + addons + travelFee;
 
return {
serviceFee: Math.round(serviceFee),
laborMin: Math.round(baseMin),
laborMax: Math.round(baseMax),
addons: Math.round(addons),
travelFee: Math.round(travelFee),
totalMin: Math.round(totalMin),
totalMax: Math.round(totalMax)
};
};
 
quoteSection.addRow(row => {
row.addPriceDisplay('serviceFee', {
label: 'Service Call Fee',
computedValue: () => calculateQuote().serviceFee,
variant: 'default'
}, '1fr');
row.addTextPanel('laborRange', {
label: 'Labor & Materials Estimate',
computedValue: () => `$${calculateQuote().laborMin.toLocaleString()} - $${calculateQuote().laborMax.toLocaleString()}`,
customStyles: { 'font-weight': '500' }
}, '1fr');
});
 
quoteSection.addRow(row => {
row.addPriceDisplay('addons', {
label: 'Additional Services',
computedValue: () => calculateQuote().addons,
variant: 'default',
isVisible: () => calculateQuote().addons > 0
});
});
 
quoteSection.addRow(row => {
row.addPriceDisplay('travelFee', {
label: 'Travel Fee',
computedValue: () => calculateQuote().travelFee,
variant: 'default',
prefix: '+',
isVisible: () => calculateQuote().travelFee > 0
});
});
 
// Summary Section
const summarySection = form.addSubform('summary', {
title: '๐Ÿงพ Total Estimate',
isCollapsible: false,
sticky: 'bottom'
});
 
summarySection.addRow(row => {
row.addTextPanel('totalRange', {
computedValue: () => `$${calculateQuote().totalMin.toLocaleString()} - $${calculateQuote().totalMax.toLocaleString()}`,
customStyles: { 'font-size': '2rem', 'font-weight': '700', 'color': '#059669', 'text-align': 'center' }
});
});
 
summarySection.addRow(row => {
row.addTextPanel('note', {
computedValue: () => 'Estimate includes typical materials. Complex jobs may require on-site evaluation.',
customStyles: { 'font-size': '0.85rem', 'color': '#64748b', 'text-align': 'center' }
});
});
 
form.configureSubmitButton({
label: 'Request Electrician'
});
}
 

Frequently Asked Questions

How much does an electrician charge per hour?

Electricians typically charge $75-150 per hour for standard work. Master electricians and emergency services may charge $150-250 per hour. Many jobs are quoted as flat rates rather than hourly.

Do I need a permit for electrical work?

Permits are typically required for new circuits, panel work, major installations, and any work that modifies your home's electrical system. Simple repairs and replacements usually don't require permits.

How much does an electrical panel upgrade cost?

Panel upgrades range from $1,500 for a 100-amp upgrade to $4,000+ for 200-amp service. Costs depend on existing wiring, accessibility, and local permit requirements.

How much does EV charger installation cost?

Level 2 EV charger installation typically costs $500-2,500 depending on amperage, distance from panel, and whether a panel upgrade is needed. This doesn't include the charger unit itself.

Can electrical companies customize this calculator?

Yes! Electrical contractors can customize services, pricing, and add-ons to match their rates and embed it on their website for instant customer quotes.