Cabinet Planner surpasses 2 billion dollars in sales
I’ve been selling my program since July of 2005. I got curious how much money my customers have made with it over the years and wrote this simple program to get an idea.
I have averaged about 1.1 sales a day over the years. Assuming about 1/2 are actual cabinet shops I figure 17 new shops per month.
The average sales for each shop is probably much higher but a small shop should easily do one kitchen per month at an average of $15K. For larger shops (not really my target audience) that figure would easily be in the 6 digits.
Code:
AverageMonthlySales=15000
NewCustomersPerMonth=17
TotalMonths=139
for x=1 to TotalMonths
TotalCustomers=TotalCustomers+NewCustomersPerMonth
TotalSales=TotalSales+(TotalCustomers*AverageMonthlySales)
next x
print TotalSales
end