deducting same amount from cells containing various values

  • Thread starter Thread starter Paul Rush
  • Start date Start date
P

Paul Rush

Help
I am trying to reduce a total in divisions of 500 to give me a total
for each 500 reached and leave a remainder

ie

231
456
322
124
220

= 1353
/500 = 2

remain =353

any help please?:confused:
 
If you enter the formula "=MOD(1353,500)" into a cell, the result will be
353.
 
Hi Paul,

assuming the figures are on a1:a6 and the sum on A7

on C7 use
=int(a7/500)

for the remain use
=((a7/500-int(a7/500))*a7)/(a7/500)

hth
regards from Brazil
Marcelo

"Paul Rush" escreveu:
 
Thanks for the replys

Marcelo, the formulas worked fantastically well. The stress is over!

thanks:)
 

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

Back
Top