Window Cleaning Calculator

Help customers get instant window cleaning quotes with this detailed calculator. Supports various window types (standard, large, picture, French, skylights, sliding doors, storefront), property types from single-story homes to large commercial buildings, and additional services like screen cleaning, track cleaning, hard water removal, and gutter cleaning. Perfect for window cleaning companies serving both residential and commercial clients.

Home Services

Try the Calculator

Window Cleaning Quote
๐Ÿ  Property Details
Loading map...
 
๐Ÿ“ Enter address to calculate travel fee
๐ŸชŸ Window Count by Type
 
 
 
 
 
 
๐Ÿ“… Service Frequency
 
โœจ Additional Services
๐Ÿ“‹ Window Condition
 

๐Ÿ’ฐ Your Quote
$ 297.00
+
$ 0.00
+
$ 0.00
+
$ 0.00

$ 297.00
๐Ÿงพ Summary
$ 297.00
Minimum service charge: $75.
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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
export function windowCleaningCalculator(form: FormTs) {
// Base prices per window by type
const windowTypePrices: Record<string, number> = {
'standard': 5,
'large': 8,
'picture': 12,
'french': 10,
'skylights': 15,
'sliding-door': 12,
'storefront': 6
};
 
// Property type base fees
const propertyFees: Record<string, number> = {
'residential-1': 0, // 1 story
'residential-2': 25, // 2 story
'residential-3': 50, // 3 story
'commercial-small': 30,
'commercial-large': 75
};
 
// Frequency discounts
const frequencyDiscounts: Record<string, number> = {
'one-time': 0,
'quarterly': 10,
'bi-monthly': 15,
'monthly': 20
};
 
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Window Cleaning Quote',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Property Details Section
const propertySection = form.addSubform('propertyDetails', { title: '๐Ÿ  Property Details' });
 
propertySection.addRow(row => {
row.addAddress('serviceAddress', {
label: 'Service Address',
placeholder: 'Enter property 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
});
});
 
propertySection.addRow(row => {
row.addTextPanel('travelZoneInfo', {
computedValue: () => {
const addressField = propertySection.address('serviceAddress');
const miles = addressField?.distance();
if (miles == null) return '๐Ÿ“ Enter address to calculate travel fee';
if (miles <= 12) return '๐Ÿ“ Within service area - No travel fee';
if (miles <= 25) return '๐Ÿ“ Extended area - $15 travel fee';
if (miles <= 40) return '๐Ÿ“ Remote area - $30 travel fee';
return '๐Ÿ“ Long distance - $45+ travel fee';
},
customStyles: { 'font-size': '0.9rem', 'color': '#0369a1', 'background': '#e0f2fe', 'padding': '10px', 'border-radius': '6px' }
});
});
 
propertySection.addRow(row => {
row.addDropdown('propertyType', {
label: 'Property Type',
options: [
{ id: 'residential-1', name: 'Residential - 1 Story' },
{ id: 'residential-2', name: 'Residential - 2 Story (+$25)' },
{ id: 'residential-3', name: 'Residential - 3+ Story (+$50)' },
{ id: 'commercial-small', name: 'Commercial - Small (+$30)' },
{ id: 'commercial-large', name: 'Commercial - Large (+$75)' }
],
defaultValue: 'residential-1',
isRequired: true
}, '1fr');
row.addDropdown('serviceType', {
label: 'Service Type',
options: [
{ id: 'exterior', name: 'Exterior Only' },
{ id: 'interior', name: 'Interior Only' },
{ id: 'both', name: 'Interior & Exterior (+80%)' }
],
defaultValue: 'both',
isRequired: true
}, '1fr');
});
 
// Window Count Section
const windowsSection = form.addSubform('windowCount', { title: '๐ŸชŸ Window Count by Type' });
 
windowsSection.addRow(row => {
row.addInteger('standardWindows', {
label: 'Standard Windows ($5 each)',
min: 0,
max: 100,
defaultValue: 15,
placeholder: 'e.g. 15'
}, '1fr');
row.addInteger('largeWindows', {
label: 'Large Windows ($8 each)',
min: 0,
max: 50,
defaultValue: 4,
placeholder: 'e.g. 4'
}, '1fr');
});
 
windowsSection.addRow(row => {
row.addInteger('pictureWindows', {
label: 'Picture/Bay Windows ($12 each)',
min: 0,
max: 20,
defaultValue: 2,
placeholder: 'e.g. 2'
}, '1fr');
row.addInteger('frenchWindows', {
label: 'French Doors/Windows ($10 each)',
min: 0,
max: 20,
defaultValue: 1,
placeholder: 'e.g. 1'
}, '1fr');
});
 
windowsSection.addRow(row => {
row.addInteger('skylights', {
label: 'Skylights ($15 each)',
min: 0,
max: 20,
defaultValue: 0,
placeholder: 'e.g. 0'
}, '1fr');
row.addInteger('slidingDoors', {
label: 'Sliding Glass Doors ($12 each)',
min: 0,
max: 20,
defaultValue: 2,
placeholder: 'e.g. 2'
}, '1fr');
});
 
windowsSection.addRow(row => {
row.addInteger('storefrontPanes', {
label: 'Storefront Panes ($6 each)',
min: 0,
max: 200,
defaultValue: 0,
placeholder: 'Commercial only',
isVisible: () => {
const type = propertySection.dropdown('propertyType')?.value();
return type === 'commercial-small' || type === 'commercial-large';
}
}, '1fr');
});
 
// Service Frequency Section
const frequencySection = form.addSubform('serviceFrequency', { title: '๐Ÿ“… Service Frequency' });
 
frequencySection.addRow(row => {
row.addRadioButton('frequency', {
label: 'How often do you need service?',
options: [
{ id: 'one-time', name: 'One-time cleaning' },
{ id: 'quarterly', name: 'Quarterly (4x/year) - 10% off' },
{ id: 'bi-monthly', name: 'Bi-monthly (6x/year) - 15% off' },
{ id: 'monthly', name: 'Monthly (12x/year) - 20% off' }
],
defaultValue: 'one-time',
orientation: 'vertical'
});
});
 
// Additional Services Section
const addonsSection = form.addSubform('addons', { title: 'โœจ Additional Services' });
 
addonsSection.addRow(row => {
row.addCheckbox('screenCleaning', {
label: 'Screen Cleaning (+$3/screen)',
defaultValue: false
}, '1fr');
row.addCheckbox('trackCleaning', {
label: 'Window Track Cleaning (+$4/window)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('hardWaterRemoval', {
label: 'Hard Water Stain Removal (+$8/window)',
defaultValue: false
}, '1fr');
row.addCheckbox('pressureWashing', {
label: 'Window Frame Pressure Wash (+$2/window)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('gutterCleaning', {
label: 'Gutter Cleaning (Add-on +$75-150)',
defaultValue: false
}, '1fr');
row.addCheckbox('solarPanels', {
label: 'Solar Panel Cleaning (+$10/panel)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addInteger('screenCount', {
label: 'Number of Screens',
min: 0,
max: 100,
defaultValue: 15,
isVisible: () => addonsSection.checkbox('screenCleaning')?.value() === true
}, '1fr');
row.addInteger('solarPanelCount', {
label: 'Number of Solar Panels',
min: 0,
max: 50,
defaultValue: 10,
isVisible: () => addonsSection.checkbox('solarPanels')?.value() === true
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addDropdown('gutterSize', {
label: 'Gutter Size',
options: [
{ id: 'small', name: 'Small Home (up to 100 linear ft) +$75' },
{ id: 'medium', name: 'Medium Home (100-200 linear ft) +$100' },
{ id: 'large', name: 'Large Home (200+ linear ft) +$150' }
],
defaultValue: 'medium',
isVisible: () => addonsSection.checkbox('gutterCleaning')?.value() === true
}, '1fr');
});
 
// Condition Section
const conditionSection = form.addSubform('condition', { title: '๐Ÿ“‹ Window Condition' });
 
conditionSection.addRow(row => {
row.addRadioButton('dirtLevel', {
label: 'Current condition of windows',
options: [
{ id: 'light', name: 'Light - Recently cleaned, minimal dirt' },
{ id: 'normal', name: 'Normal - Standard residential buildup' },
{ id: 'heavy', name: 'Heavy - Not cleaned in over a year (+25%)' },
{ id: 'severe', name: 'Severe - Construction dust, neglected (+50%)' }
],
defaultValue: 'normal',
orientation: 'vertical'
});
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Price Summary Section
const summarySection = form.addSubform('summary', { title: '๐Ÿ’ฐ Your Quote', isCollapsible: false });
 
// Helper to calculate travel fee based on distance
const getTravelFee = () => {
const addressField = propertySection.address('serviceAddress');
const miles = addressField?.distance();
if (miles == null || miles <= 12) return 0;
if (miles <= 25) return 15;
if (miles <= 40) return 30;
return 45 + Math.floor((miles - 40) / 15) * 10; // +$10 per 15 miles beyond 40
};
 
const getTotalWindowCount = () => {
return (windowsSection.integer('standardWindows')?.value() || 0) +
(windowsSection.integer('largeWindows')?.value() || 0) +
(windowsSection.integer('pictureWindows')?.value() || 0) +
(windowsSection.integer('frenchWindows')?.value() || 0) +
(windowsSection.integer('skylights')?.value() || 0) +
(windowsSection.integer('slidingDoors')?.value() || 0) +
(windowsSection.integer('storefrontPanes')?.value() || 0);
};
 
const calculateWindowsPrice = () => {
const standard = windowsSection.integer('standardWindows')?.value() || 0;
const large = windowsSection.integer('largeWindows')?.value() || 0;
const picture = windowsSection.integer('pictureWindows')?.value() || 0;
const french = windowsSection.integer('frenchWindows')?.value() || 0;
const skylights = windowsSection.integer('skylights')?.value() || 0;
const sliding = windowsSection.integer('slidingDoors')?.value() || 0;
const storefront = windowsSection.integer('storefrontPanes')?.value() || 0;
 
return (standard * (windowTypePrices['standard'] ?? 5)) +
(large * (windowTypePrices['large'] ?? 8)) +
(picture * (windowTypePrices['picture'] ?? 12)) +
(french * (windowTypePrices['french'] ?? 10)) +
(skylights * (windowTypePrices['skylights'] ?? 15)) +
(sliding * (windowTypePrices['sliding-door'] ?? 12)) +
(storefront * (windowTypePrices['storefront'] ?? 6));
};
 
summarySection.addRow(row => {
row.addPriceDisplay('windowsPrice', {
label: () => `Windows (${getTotalWindowCount()} total)`,
computedValue: () => {
let price = calculateWindowsPrice();
const serviceType = propertySection.dropdown('serviceType')?.value() || 'both';
if (serviceType === 'both') price *= 1.8;
return Math.round(price);
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('propertyFee', {
label: 'Property Access Fee',
computedValue: () => {
const type = propertySection.dropdown('propertyType')?.value() || 'residential-1';
return propertyFees[type] || 0;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('conditionAdjustment', {
label: 'Condition Adjustment',
computedValue: () => {
let price = calculateWindowsPrice();
const serviceType = propertySection.dropdown('serviceType')?.value() || 'both';
if (serviceType === 'both') price *= 1.8;
 
const dirt = conditionSection.radioButton('dirtLevel')?.value() || 'normal';
if (dirt === 'heavy') return Math.round(price * 0.25);
if (dirt === 'severe') return Math.round(price * 0.50);
return 0;
},
variant: 'default',
prefix: '+',
isVisible: () => {
const dirt = conditionSection.radioButton('dirtLevel')?.value();
return dirt === 'heavy' || dirt === 'severe';
}
}, '1fr');
row.addPriceDisplay('addonsTotal', {
label: 'Additional Services',
computedValue: () => {
let total = 0;
const windowCount = getTotalWindowCount();
 
if (addonsSection.checkbox('screenCleaning')?.value()) {
const screens = addonsSection.integer('screenCount')?.value() || 0;
total += screens * 3;
}
if (addonsSection.checkbox('trackCleaning')?.value()) {
total += windowCount * 4;
}
if (addonsSection.checkbox('hardWaterRemoval')?.value()) {
total += windowCount * 8;
}
if (addonsSection.checkbox('pressureWashing')?.value()) {
total += windowCount * 2;
}
if (addonsSection.checkbox('gutterCleaning')?.value()) {
const size = addonsSection.dropdown('gutterSize')?.value() || 'medium';
const gutterPrices: Record<string, number> = { 'small': 75, 'medium': 100, 'large': 150 };
total += gutterPrices[size] || 100;
}
if (addonsSection.checkbox('solarPanels')?.value()) {
const panels = addonsSection.integer('solarPanelCount')?.value() || 0;
total += panels * 10;
}
 
return total;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('travelFee', {
label: 'Travel Fee',
computedValue: () => getTravelFee(),
variant: 'default',
prefix: '+'
});
});
 
summarySection.addRow(row => {
row.addPriceDisplay('frequencyDiscount', {
label: 'Frequency Discount',
computedValue: () => {
let price = calculateWindowsPrice();
const serviceType = propertySection.dropdown('serviceType')?.value() || 'both';
if (serviceType === 'both') price *= 1.8;
 
const type = propertySection.dropdown('propertyType')?.value() || 'residential-1';
price += propertyFees[type] || 0;
 
const dirt = conditionSection.radioButton('dirtLevel')?.value() || 'normal';
if (dirt === 'heavy') price *= 1.25;
if (dirt === 'severe') price *= 1.50;
 
const frequency = frequencySection.radioButton('frequency')?.value() || 'one-time';
const discountPercent = frequencyDiscounts[frequency] || 0;
return -Math.round(price * discountPercent / 100);
},
variant: 'success',
isVisible: () => {
const frequency = frequencySection.radioButton('frequency')?.value();
return frequency !== 'one-time';
}
});
});
 
summarySection.addSpacer({ showLine: true, lineStyle: 'solid', lineColor: '#e2e8f0' });
 
summarySection.addRow(row => {
row.addPriceDisplay('totalPrice', {
label: 'Total Price',
computedValue: () => {
// Base window price
let total = calculateWindowsPrice();
 
// Service type multiplier
const serviceType = propertySection.dropdown('serviceType')?.value() || 'both';
if (serviceType === 'both') total *= 1.8;
 
// Property fee
const type = propertySection.dropdown('propertyType')?.value() || 'residential-1';
total += propertyFees[type] || 0;
 
// Condition adjustment
const dirt = conditionSection.radioButton('dirtLevel')?.value() || 'normal';
if (dirt === 'heavy') total *= 1.25;
if (dirt === 'severe') total *= 1.50;
 
// Add-ons
const windowCount = getTotalWindowCount();
if (addonsSection.checkbox('screenCleaning')?.value()) {
const screens = addonsSection.integer('screenCount')?.value() || 0;
total += screens * 3;
}
if (addonsSection.checkbox('trackCleaning')?.value()) total += windowCount * 4;
if (addonsSection.checkbox('hardWaterRemoval')?.value()) total += windowCount * 8;
if (addonsSection.checkbox('pressureWashing')?.value()) total += windowCount * 2;
if (addonsSection.checkbox('gutterCleaning')?.value()) {
const size = addonsSection.dropdown('gutterSize')?.value() || 'medium';
const gutterPrices: Record<string, number> = { 'small': 75, 'medium': 100, 'large': 150 };
total += gutterPrices[size] || 100;
}
if (addonsSection.checkbox('solarPanels')?.value()) {
const panels = addonsSection.integer('solarPanelCount')?.value() || 0;
total += panels * 10;
}
 
// Frequency discount
const frequency = frequencySection.radioButton('frequency')?.value() || 'one-time';
const discountPercent = frequencyDiscounts[frequency] || 0;
total *= (1 - discountPercent / 100);
 
// Add travel fee (not subject to discount)
total += getTravelFee();
 
return Math.round(total);
},
variant: 'large',
suffix: () => {
const frequency = frequencySection.radioButton('frequency')?.value();
if (frequency === 'one-time') return '';
return '/visit';
}
});
});
 
summarySection.addRow(row => {
row.addTextPanel('annualSavings', {
computedValue: () => {
const frequency = frequencySection.radioButton('frequency')?.value() || 'one-time';
if (frequency === 'one-time') return '';
 
let basePrice = calculateWindowsPrice();
const serviceType = propertySection.dropdown('serviceType')?.value() || 'both';
if (serviceType === 'both') basePrice *= 1.8;
 
const type = propertySection.dropdown('propertyType')?.value() || 'residential-1';
basePrice += propertyFees[type] || 0;
 
const visitsPerYear: Record<string, number> = {
'quarterly': 4,
'bi-monthly': 6,
'monthly': 12
};
const visits = visitsPerYear[frequency] || 1;
const discountPercent = frequencyDiscounts[frequency] || 0;
const savings = Math.round(basePrice * visits * discountPercent / 100);
 
return `Annual savings with recurring service: $${savings}`;
},
customStyles: { 'font-size': '0.9rem', 'color': '#059669' },
isVisible: () => {
const frequency = frequencySection.radioButton('frequency')?.value();
return frequency !== 'one-time';
}
});
});
 
const finalSection = form.addSubform('final', {
title: '๐Ÿงพ Summary',
isCollapsible: false,
sticky: 'bottom'
});
 
finalSection.addRow(row => {
row.addPriceDisplay('totalPrice', {
label: 'Total Price',
computedValue: () => {
let total = calculateWindowsPrice();
 
const serviceType = propertySection.dropdown('serviceType')?.value() || 'both';
if (serviceType === 'both') total *= 1.8;
 
const type = propertySection.dropdown('propertyType')?.value() || 'residential-1';
total += propertyFees[type] || 0;
 
const dirt = conditionSection.radioButton('dirtLevel')?.value() || 'normal';
if (dirt === 'heavy') total *= 1.25;
if (dirt === 'severe') total *= 1.50;
 
const windowCount = getTotalWindowCount();
if (addonsSection.checkbox('screenCleaning')?.value()) {
const screens = addonsSection.integer('screenCount')?.value() || 0;
total += screens * 3;
}
if (addonsSection.checkbox('trackCleaning')?.value()) total += windowCount * 4;
if (addonsSection.checkbox('hardWaterRemoval')?.value()) total += windowCount * 8;
if (addonsSection.checkbox('pressureWashing')?.value()) total += windowCount * 2;
if (addonsSection.checkbox('gutterCleaning')?.value()) {
const size = addonsSection.dropdown('gutterSize')?.value() || 'medium';
const gutterPrices: Record<string, number> = { 'small': 75, 'medium': 100, 'large': 150 };
total += gutterPrices[size] || 100;
}
if (addonsSection.checkbox('solarPanels')?.value()) {
const panels = addonsSection.integer('solarPanelCount')?.value() || 0;
total += panels * 10;
}
 
const frequency = frequencySection.radioButton('frequency')?.value() || 'one-time';
const discountPercent = frequencyDiscounts[frequency] || 0;
total *= (1 - discountPercent / 100);
 
// Add travel fee (not subject to discount)
total += getTravelFee();
 
return Math.round(total);
},
variant: 'large'
});
});
 
finalSection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'Minimum service charge: $75.',
customStyles: { 'font-size': '0.85rem', 'color': '#64748b', 'font-style': 'italic' }
});
});
 
form.configureSubmitButton({
label: 'Book Service'
});
}
 

Frequently Asked Questions

How do I price different window types?

The calculator includes separate pricing for standard windows, large windows, picture/bay windows, French doors, skylights, sliding glass doors, and storefront panes. Each can be customized to match your actual pricing.

Can I charge extra for multi-story buildings?

Yes. The calculator includes property access fees that increase based on the number of stories or building type. Two-story homes, three-story homes, and commercial buildings each have adjustable surcharges.

How do interior/exterior options work?

Customers can select exterior only, interior only, or both. When both is selected, the calculator applies an 80% premium (since interior+exterior together is slightly less than double the work of just exterior).

Can I offer discounts for recurring service?

Yes. The calculator includes frequency discounts for quarterly (10%), bi-monthly (15%), and monthly (20%) service. These percentages are fully customizable.

What about screens and other add-ons?

The calculator includes optional add-ons for screen cleaning, track cleaning, hard water stain removal, frame pressure washing, gutter cleaning, and solar panel cleaning - each with customizable pricing.