Coworking Space Calculator

Help potential coworking members find their perfect workspace with this interactive calculator. Visitors can compare hot desks, dedicated desks, and private offices across different locations. The calculator shows how amenities like meeting room credits, parking, and business services affect pricing, plus discounts for longer commitments. Convert more tours into members by providing transparent, personalized pricing before they even visit.

Financial

Try the Calculator

Coworking Space Membership Calculator
🏢 Membership Type
 
 
📅 Commitment Term
 
✨ Access & Amenities
 
🎯 Business Services
 

💰 Cost Breakdown
$ 199.00
/mo
+
$ 0.00
/mo
+
$ 0.00
/mo
+
$ 0.00
/mo
$ 0.00
/mo
🏢 Your Membership
$ 199.00
/mo
Includes: High-speed WiFi, coffee & tea, common areas, community events
Prices subject to availability. First month + security deposit due at signing.
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
export function coworkingSpaceCalculator(form: FormTs) {
// Membership base prices (monthly)
const membershipPrices: Record<string, number> = {
'hot-desk': 199,
'dedicated-desk': 399,
'private-office-1': 799,
'private-office-2': 1299,
'private-office-4': 2199,
'private-office-6': 2999
};
 
// Location multipliers
const locationMultipliers: Record<string, number> = {
'downtown': 1.3,
'business-district': 1.2,
'suburban': 1.0,
'tech-hub': 1.25
};
 
// Commitment discounts
const commitmentDiscounts: Record<string, number> = {
'monthly': 0,
'3-month': 0.05,
'6-month': 0.10,
'12-month': 0.20
};
 
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Coworking Space Membership Calculator',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Membership Type Section
const membershipSection = form.addSubform('membership', { title: '🏢 Membership Type' });
 
membershipSection.addRow(row => {
row.addRadioButton('membershipType', {
label: 'Select Your Workspace',
options: [
{ id: 'hot-desk', name: 'Hot Desk - $199/mo (Any available desk)' },
{ id: 'dedicated-desk', name: 'Dedicated Desk - $399/mo (Your own desk)' },
{ id: 'private-office-1', name: 'Private Office (1 person) - $799/mo' },
{ id: 'private-office-2', name: 'Private Office (2 people) - $1,299/mo' },
{ id: 'private-office-4', name: 'Private Office (4 people) - $2,199/mo' },
{ id: 'private-office-6', name: 'Private Office (6 people) - $2,999/mo' }
],
defaultValue: 'hot-desk',
orientation: 'vertical',
isRequired: true
});
});
 
membershipSection.addRow(row => {
row.addDropdown('location', {
label: 'Location',
options: [
{ id: 'downtown', name: 'Downtown (+30%)' },
{ id: 'business-district', name: 'Business District (+20%)' },
{ id: 'tech-hub', name: 'Tech Hub (+25%)' },
{ id: 'suburban', name: 'Suburban (Standard)' }
],
defaultValue: 'suburban',
isRequired: true
}, '1fr');
row.addInteger('teamSize', {
label: 'Team Members',
min: 1,
max: 20,
defaultValue: 1,
isVisible: () => {
const type = membershipSection.radioButton('membershipType')?.value();
return type === 'hot-desk' || type === 'dedicated-desk';
}
}, '1fr');
});
 
// Commitment Section
const commitmentSection = form.addSubform('commitment', { title: '📅 Commitment Term' });
 
commitmentSection.addRow(row => {
row.addRadioButton('term', {
label: 'Membership Term',
options: [
{ id: 'monthly', name: 'Month-to-Month' },
{ id: '3-month', name: '3 Months (-5%)' },
{ id: '6-month', name: '6 Months (-10%)' },
{ id: '12-month', name: '12 Months (-20%)' }
],
defaultValue: 'monthly',
orientation: 'vertical',
isRequired: true
});
});
 
// Access & Amenities Section
const amenitiesSection = form.addSubform('amenities', { title: '✨ Access & Amenities' });
 
amenitiesSection.addRow(row => {
row.addRadioButton('accessLevel', {
label: 'Access Hours',
options: [
{ id: 'business', name: 'Business Hours (9am-6pm, Mon-Fri)' },
{ id: 'extended', name: 'Extended Hours (7am-10pm) +$50/mo' },
{ id: '24-7', name: '24/7 Access +$100/mo' }
],
defaultValue: 'business',
orientation: 'vertical',
isRequired: true
});
});
 
amenitiesSection.addRow(row => {
row.addCheckbox('meetingRoom', {
label: 'Meeting Room Credits (10 hrs/mo) +$75',
defaultValue: false
}, '1fr');
row.addCheckbox('phoneRoom', {
label: 'Phone Booth Priority Access +$30',
defaultValue: false
}, '1fr');
});
 
amenitiesSection.addRow(row => {
row.addCheckbox('printing', {
label: 'Unlimited Printing +$40/mo',
defaultValue: false
}, '1fr');
row.addCheckbox('locker', {
label: 'Personal Locker +$25/mo',
defaultValue: false
}, '1fr');
});
 
amenitiesSection.addRow(row => {
row.addCheckbox('mailService', {
label: 'Business Mail Service +$35/mo',
defaultValue: false
}, '1fr');
row.addCheckbox('parking', {
label: 'Reserved Parking +$150/mo',
defaultValue: false
}, '1fr');
});
 
// Additional Services Section
const servicesSection = form.addSubform('services', { title: '🎯 Business Services' });
 
servicesSection.addRow(row => {
row.addCheckbox('virtualAddress', {
label: 'Virtual Business Address +$50/mo',
defaultValue: false
}, '1fr');
row.addCheckbox('reception', {
label: 'Reception Services +$100/mo',
defaultValue: false
}, '1fr');
});
 
servicesSection.addRow(row => {
row.addCheckbox('itSupport', {
label: 'IT Support +$75/mo',
defaultValue: false
}, '1fr');
row.addCheckbox('networkAccess', {
label: 'Community Network Access +$25/mo',
defaultValue: false
}, '1fr');
});
 
servicesSection.addRow(row => {
row.addInteger('guestPasses', {
label: 'Guest Day Passes (per month)',
min: 0,
max: 20,
defaultValue: 0,
placeholder: '0'
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Price Summary Section
const summarySection = form.addSubform('summary', { title: '💰 Cost Breakdown', isCollapsible: false });
 
summarySection.addRow(row => {
row.addPriceDisplay('basePrice', {
label: 'Base Membership',
computedValue: () => {
const membershipType = membershipSection.radioButton('membershipType')?.value() || 'hot-desk';
const location = membershipSection.dropdown('location')?.value() || 'suburban';
const teamSize = membershipSection.integer('teamSize')?.value() || 1;
 
const basePrice = membershipPrices[membershipType] || 199;
const locationMultiplier = locationMultipliers[location] || 1.0;
 
const isHotOrDedicated = membershipType === 'hot-desk' || membershipType === 'dedicated-desk';
const multiplier = isHotOrDedicated ? teamSize : 1;
 
return Math.round(basePrice * locationMultiplier * multiplier);
},
variant: 'default',
suffix: '/mo'
}, '1fr');
row.addPriceDisplay('accessFee', {
label: 'Access Level',
computedValue: () => {
const accessLevel = amenitiesSection.radioButton('accessLevel')?.value() || 'business';
const accessPrices: Record<string, number> = {
'business': 0,
'extended': 50,
'24-7': 100
};
return accessPrices[accessLevel] || 0;
},
variant: 'default',
prefix: '+',
suffix: '/mo'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('amenities', {
label: 'Amenities',
computedValue: () => {
let total = 0;
if (amenitiesSection.checkbox('meetingRoom')?.value()) total += 75;
if (amenitiesSection.checkbox('phoneRoom')?.value()) total += 30;
if (amenitiesSection.checkbox('printing')?.value()) total += 40;
if (amenitiesSection.checkbox('locker')?.value()) total += 25;
if (amenitiesSection.checkbox('mailService')?.value()) total += 35;
if (amenitiesSection.checkbox('parking')?.value()) total += 150;
return total;
},
variant: 'default',
prefix: '+',
suffix: '/mo'
}, '1fr');
row.addPriceDisplay('services', {
label: 'Business Services',
computedValue: () => {
let total = 0;
if (servicesSection.checkbox('virtualAddress')?.value()) total += 50;
if (servicesSection.checkbox('reception')?.value()) total += 100;
if (servicesSection.checkbox('itSupport')?.value()) total += 75;
if (servicesSection.checkbox('networkAccess')?.value()) total += 25;
const guestPasses = servicesSection.integer('guestPasses')?.value() || 0;
total += guestPasses * 25;
return total;
},
variant: 'default',
prefix: '+',
suffix: '/mo'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('termDiscount', {
label: 'Term Discount',
computedValue: () => {
const term = commitmentSection.radioButton('term')?.value() || 'monthly';
if (term === 'monthly') return 0;
 
const membershipType = membershipSection.radioButton('membershipType')?.value() || 'hot-desk';
const location = membershipSection.dropdown('location')?.value() || 'suburban';
const teamSize = membershipSection.integer('teamSize')?.value() || 1;
const accessLevel = amenitiesSection.radioButton('accessLevel')?.value() || 'business';
 
const basePrice = membershipPrices[membershipType] || 199;
const locationMultiplier = locationMultipliers[location] || 1.0;
const isHotOrDedicated = membershipType === 'hot-desk' || membershipType === 'dedicated-desk';
const teamMultiplier = isHotOrDedicated ? teamSize : 1;
const membershipTotal = basePrice * locationMultiplier * teamMultiplier;
 
const accessPrices: Record<string, number> = { 'business': 0, 'extended': 50, '24-7': 100 };
const accessFee = accessPrices[accessLevel] || 0;
 
let amenitiesTotal = 0;
if (amenitiesSection.checkbox('meetingRoom')?.value()) amenitiesTotal += 75;
if (amenitiesSection.checkbox('phoneRoom')?.value()) amenitiesTotal += 30;
if (amenitiesSection.checkbox('printing')?.value()) amenitiesTotal += 40;
if (amenitiesSection.checkbox('locker')?.value()) amenitiesTotal += 25;
if (amenitiesSection.checkbox('mailService')?.value()) amenitiesTotal += 35;
if (amenitiesSection.checkbox('parking')?.value()) amenitiesTotal += 150;
 
let servicesTotal = 0;
if (servicesSection.checkbox('virtualAddress')?.value()) servicesTotal += 50;
if (servicesSection.checkbox('reception')?.value()) servicesTotal += 100;
if (servicesSection.checkbox('itSupport')?.value()) servicesTotal += 75;
if (servicesSection.checkbox('networkAccess')?.value()) servicesTotal += 25;
const guestPasses = servicesSection.integer('guestPasses')?.value() || 0;
servicesTotal += guestPasses * 25;
 
const monthlyTotal = membershipTotal + accessFee + amenitiesTotal + servicesTotal;
const discount = commitmentDiscounts[term] || 0;
 
return -Math.round(monthlyTotal * discount);
},
variant: 'success',
prefix: '',
suffix: '/mo'
}, '1fr');
});
 
const finalSection = form.addSubform('final', {
title: '🏢 Your Membership',
isCollapsible: false,
sticky: 'bottom'
});
 
finalSection.addRow(row => {
row.addPriceDisplay('monthlyTotal', {
label: 'Monthly Total',
computedValue: () => {
const membershipType = membershipSection.radioButton('membershipType')?.value() || 'hot-desk';
const location = membershipSection.dropdown('location')?.value() || 'suburban';
const teamSize = membershipSection.integer('teamSize')?.value() || 1;
const term = commitmentSection.radioButton('term')?.value() || 'monthly';
const accessLevel = amenitiesSection.radioButton('accessLevel')?.value() || 'business';
 
const basePrice = membershipPrices[membershipType] || 199;
const locationMultiplier = locationMultipliers[location] || 1.0;
const isHotOrDedicated = membershipType === 'hot-desk' || membershipType === 'dedicated-desk';
const teamMultiplier = isHotOrDedicated ? teamSize : 1;
const membershipTotal = basePrice * locationMultiplier * teamMultiplier;
 
const accessPrices: Record<string, number> = { 'business': 0, 'extended': 50, '24-7': 100 };
const accessFee = accessPrices[accessLevel] || 0;
 
let amenitiesTotal = 0;
if (amenitiesSection.checkbox('meetingRoom')?.value()) amenitiesTotal += 75;
if (amenitiesSection.checkbox('phoneRoom')?.value()) amenitiesTotal += 30;
if (amenitiesSection.checkbox('printing')?.value()) amenitiesTotal += 40;
if (amenitiesSection.checkbox('locker')?.value()) amenitiesTotal += 25;
if (amenitiesSection.checkbox('mailService')?.value()) amenitiesTotal += 35;
if (amenitiesSection.checkbox('parking')?.value()) amenitiesTotal += 150;
 
let servicesTotal = 0;
if (servicesSection.checkbox('virtualAddress')?.value()) servicesTotal += 50;
if (servicesSection.checkbox('reception')?.value()) servicesTotal += 100;
if (servicesSection.checkbox('itSupport')?.value()) servicesTotal += 75;
if (servicesSection.checkbox('networkAccess')?.value()) servicesTotal += 25;
const guestPasses = servicesSection.integer('guestPasses')?.value() || 0;
servicesTotal += guestPasses * 25;
 
const monthlyTotal = membershipTotal + accessFee + amenitiesTotal + servicesTotal;
const discount = commitmentDiscounts[term] || 0;
 
return Math.round(monthlyTotal * (1 - discount));
},
variant: 'large',
suffix: '/mo'
}, '1fr');
row.addPriceDisplay('perPerson', {
label: 'Per Person',
computedValue: () => {
const membershipType = membershipSection.radioButton('membershipType')?.value() || 'hot-desk';
const location = membershipSection.dropdown('location')?.value() || 'suburban';
const teamSize = membershipSection.integer('teamSize')?.value() || 1;
const term = commitmentSection.radioButton('term')?.value() || 'monthly';
const accessLevel = amenitiesSection.radioButton('accessLevel')?.value() || 'business';
 
const basePrice = membershipPrices[membershipType] || 199;
const locationMultiplier = locationMultipliers[location] || 1.0;
const isHotOrDedicated = membershipType === 'hot-desk' || membershipType === 'dedicated-desk';
const teamMultiplier = isHotOrDedicated ? teamSize : 1;
const membershipTotal = basePrice * locationMultiplier * teamMultiplier;
 
const accessPrices: Record<string, number> = { 'business': 0, 'extended': 50, '24-7': 100 };
const accessFee = accessPrices[accessLevel] || 0;
 
let amenitiesTotal = 0;
if (amenitiesSection.checkbox('meetingRoom')?.value()) amenitiesTotal += 75;
if (amenitiesSection.checkbox('phoneRoom')?.value()) amenitiesTotal += 30;
if (amenitiesSection.checkbox('printing')?.value()) amenitiesTotal += 40;
if (amenitiesSection.checkbox('locker')?.value()) amenitiesTotal += 25;
if (amenitiesSection.checkbox('mailService')?.value()) amenitiesTotal += 35;
if (amenitiesSection.checkbox('parking')?.value()) amenitiesTotal += 150;
 
let servicesTotal = 0;
if (servicesSection.checkbox('virtualAddress')?.value()) servicesTotal += 50;
if (servicesSection.checkbox('reception')?.value()) servicesTotal += 100;
if (servicesSection.checkbox('itSupport')?.value()) servicesTotal += 75;
if (servicesSection.checkbox('networkAccess')?.value()) servicesTotal += 25;
 
const monthlyTotal = membershipTotal + accessFee + amenitiesTotal + servicesTotal;
const discount = commitmentDiscounts[term] || 0;
const finalMonthly = monthlyTotal * (1 - discount);
 
const people = isHotOrDedicated ? teamSize : parseInt(membershipType.split('-').pop() || '1');
return Math.round(finalMonthly / people);
},
variant: 'default',
suffix: '/mo',
isVisible: () => {
const membershipType = membershipSection.radioButton('membershipType')?.value();
const teamSize = membershipSection.integer('teamSize')?.value() || 1;
const isHotOrDedicated = membershipType === 'hot-desk' || membershipType === 'dedicated-desk';
return (isHotOrDedicated && teamSize > 1) || (!isHotOrDedicated && membershipType !== 'private-office-1');
}
}, '1fr');
});
 
finalSection.addRow(row => {
row.addTextPanel('includes', {
computedValue: () => 'Includes: High-speed WiFi, coffee & tea, common areas, community events',
customStyles: { 'font-size': '0.9rem', 'color': '#059669', 'font-weight': '500' }
});
});
 
finalSection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'Prices subject to availability. First month + security deposit due at signing.',
customStyles: { 'font-size': '0.85rem', 'color': '#64748b', 'font-style': 'italic' }
});
});
 
form.configureSubmitButton({
label: 'Schedule Tour'
});
}
 

Frequently Asked Questions

Can I set different prices for different locations?

Yes. The calculator supports location-based pricing with multipliers. You can also create separate calculators for each location with their specific pricing and available amenities.

How do I handle team memberships?

The template supports team sizing for hot desks and dedicated desks. For private offices, you can configure office sizes to match your available inventory.

Can members see real-time availability?

The calculator provides pricing estimates. For real-time availability, you can integrate with your space management software via webhooks or API.

Can I offer day passes or hourly rates?

Yes. You can add day pass and hourly options to the membership types, with their own pricing structure separate from monthly memberships.

How do I capture tour requests?

The submit button collects contact information and preferences. Connect it to your CRM to automatically schedule tours or follow up with interested prospects.