Stock purchasing SS formula help needed.

M

Madridbear

Maybe a very basic point here but here goes.

I have £2000 to buy stock @£0.74 per item.

I am trying to make a formula that shows cost.

Example....

Money = £2000
Cost = £0.74
Units = 2702,702702702702.... Of course units come in whole amounts
so...
Units = 2702 (A. How can I make it average down to 2702)

Now, the second and most important problem I have.....

Total Cost = 2702*£0.74

BUT WHEN I DO THIS, it brings me back to £2000 instead of 1999.48.

How can I fix these issues?

Thanks
 
G

Guest

=INT(A1/B1) or =ROUNDDOWN(A1/B1,0)

where A1=2000
B1=0.74

For total cost, format cell to Currency (or Decimal) with 2 decimal places

HTH
 
G

Guest

=int(2000/.74)=2702
2702*.74 = 1999.48 for me
=int(2000/.74)*2702= 1999.48 for me
all this is with cells set to general format
 
R

raypayette

Supposing 2702.702703 is in cell A3
you should use =FLOOR(A3,1) that will result in 2702
that can be multiplied by 0.74 to give 1999.48
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top