62.gif

Search (advanced search)
Use this Search form before posting, asking or make a new thread.
Tips: Use Quotation mark to search words (eg. "How To Make Money Online")

09-02-2018, 10:17 AM
Post: #1
website calculator I need on desktop
Hi all can anyone get this calculator off this site in any usable offline format (ex. excel)?

Site:
Much thanks
MassBlack
Sharing is Caring!
09-03-2018, 01:07 AM
Post: #2
RE: website calculator I need on desktop
After some copy paste, search and replace, here is the next best thing (if you are okay to do the calculations manually):

Have the following inputs:
Code:
SubscriptionCost, NumberOfSubscribers, CampaignsPerMonth, AverageReadRate, EstimatedResponseRate, AverageSpend

Use the following formulae to get the results:
Code:
NumberOfSMSTextReaders = (NumberOfSubscribers * CampaignsPerMonth * (AverageReadRate / 100))

CostPerSMSReaders = SubscriptionCost / (NumberOfSubscribers * CampaignsPerMonth * (AverageReadRate / 100))

NumberOfSMSTextResponders = (NumberOfSubscribers * CampaignsPerMonth * (AverageReadRate / 100) * (EstimatedResponseRate / 100))

CostPerSMSTextResponders =  SubscriptionCost / (NumberOfSubscribers * CampaignsPerMonth * (AverageReadRate / 100) * (EstimatedResponseRate / 100))

EstimatedTotalRevenue = (NumberOfSubscribers * CampaignsPerMonth * (AverageReadRate / 100) * (EstimatedResponseRate / 100)* AverageSpend)

CostPerSMSText =  SubscriptionCost / (NumberOfSubscribers * CampaignsPerMonth)

EstimatedTotalProfit = (NumberOfSubscribers * CampaignsPerMonth * (AverageReadRate / 100) * (EstimatedResponseRate / 100) * AverageSpend) - SubscriptionCost

ReturnOnInvestment = ((EstimatedTotalProfit - SubscriptionCost)/SubscriptionCost) * 100

Cheers,
FFFF
09-04-2018, 07:58 AM
Post: #3
RE: website calculator I need on desktop
Thank you Mate,
I will have my girl put this in a excel sheet ..
MaxReps
MassBlack

(09-03-2018 01:07 AM)feefiefohfum Wrote:  After some copy paste, search and replace, here is the next best thing (if you are okay to do the calculations manually):

Have the following inputs:
Code:
SubscriptionCost, NumberOfSubscribers, CampaignsPerMonth, AverageReadRate, EstimatedResponseRate, AverageSpend

Use the following formulae to get the results:
Code:
NumberOfSMSTextReaders = (NumberOfSubscribers * CampaignsPerMonth * (AverageReadRate / 100))

CostPerSMSReaders = SubscriptionCost / (NumberOfSubscribers * CampaignsPerMonth * (AverageReadRate / 100))

NumberOfSMSTextResponders = (NumberOfSubscribers * CampaignsPerMonth * (AverageReadRate / 100) * (EstimatedResponseRate / 100))

CostPerSMSTextResponders =  SubscriptionCost / (NumberOfSubscribers * CampaignsPerMonth * (AverageReadRate / 100) * (EstimatedResponseRate / 100))

EstimatedTotalRevenue = (NumberOfSubscribers * CampaignsPerMonth * (AverageReadRate / 100) * (EstimatedResponseRate / 100)* AverageSpend)

CostPerSMSText =  SubscriptionCost / (NumberOfSubscribers * CampaignsPerMonth)

EstimatedTotalProfit = (NumberOfSubscribers * CampaignsPerMonth * (AverageReadRate / 100) * (EstimatedResponseRate / 100) * AverageSpend) - SubscriptionCost

ReturnOnInvestment = ((EstimatedTotalProfit - SubscriptionCost)/SubscriptionCost) * 100

Cheers,
FFFF
Sharing is Caring!
09-04-2018, 06:08 PM
Post: #4
RE: website calculator I need on desktop
You are welcome, Massblack!

Cheers,
FFFF




33.gif