Problem with Profit Percentages (1 Viewer)

Catalina

Registered User.
Local time
Today, 03:40
Joined
Feb 9, 2005
Messages
462
If you buy something for $100 and sell it for $150 you make a 50% profit.
Straightforward and easy to calculate.

But what if you get the item for free ($0) and sell it for a certain amount?
You cannot calculate the percentage from $0, can you?

I am thinking about making the buy price just $0.01. That way it is possible and
it eliminates the dived by zero error.

Any thoughts about this?

Reno
 

CJ_London

Super Moderator
Staff member
Local time
Today, 11:40
Joined
Feb 19, 2013
Messages
16,607
If you buy something for $100 and sell it for $150 you make a 50% profit.
Straightforward and easy to calculate

the other way to look at it is you make a margin of 33.33%. Also easy to calculate and no issue with dividing by zero

- unless of course you give it away
 

Catalina

Registered User.
Local time
Today, 03:40
Joined
Feb 9, 2005
Messages
462
the other way to look at it is you make a margin of 33.33%. Also easy to calculate and no issue with dividing by zero

- unless of course you give it away
Good idea. I will look into it. Thanks.
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 18:40
Joined
May 7, 2009
Messages
19,234
then make the CostOfGood same as the SellingPrice?

Profit = IIf([CostOfGood] = 0, [SellingPrice], [CostOfGood]) - [CostOfGood]
 

gemma-the-husky

Super Moderator
Staff member
Local time
Today, 11:40
Joined
Sep 12, 2006
Messages
15,652
If it's free the profit percent is infinite. Simply N/A, is best. It's not a number you have to sum, so there's no issues.
Do whatever works without causing a run time error.

Normally you would probably evaluate profit as a percentage of sales, so zero cost would give you 100%. If you want to evaluate the mark up, then I suggest N/A as above.
 

Thales750

Formerly Jsanders
Local time
Today, 06:40
Joined
Dec 20, 2007
Messages
2,098
If you buy something for $100 and sell it for $150 you make a 50% profit.
Straightforward and easy to calculate.
You have your terminology wrong.
That's a 50% markup and 33.34% profit. Gross Profit is measured as a percentage of the selling price after direct cost of items sold.

50% profit is 100% markup.
 

Users who are viewing this thread

Top Bottom