Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 41
Default Rounding to Multiples of Integers?

I have a process which involves taking a product of two numbers and then
rounding down to the nearest multiple of five.

Can I write a cell-formula that will ..EITHER .. multiply the two terms AND
round the product to a multiple of five .. OR.. a formula that will take a
single value from a neighboring cell and round it down to the nearest
multiple of five?

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,118
Default Rounding to Multiples of Integers?

If you want to ROUND DOWN to multiples of 5, try this:

For values in A1 and B1
C1: =FLOOR(A1*B1,5)

Example:
2x2=4......rounded down to 0
2x7=14....rounded down to 10

Does that help?
***********
Regards,
Ron

XL2002, WinXP


"ConfusedNHouston" wrote:

I have a process which involves taking a product of two numbers and then
rounding down to the nearest multiple of five.

Can I write a cell-formula that will ..EITHER .. multiply the two terms AND
round the product to a multiple of five .. OR.. a formula that will take a
single value from a neighboring cell and round it down to the nearest
multiple of five?

Thanks

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default Rounding to Multiples of Integers?

=FLOOR(A1*B1,5)

if really round down. If just round, then

=ROUND(A1*B1/5,0)*5

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"ConfusedNHouston" wrote in
message ...
I have a process which involves taking a product of two numbers and then
rounding down to the nearest multiple of five.

Can I write a cell-formula that will ..EITHER .. multiply the two terms

AND
round the product to a multiple of five .. OR.. a formula that will take a
single value from a neighboring cell and round it down to the nearest
multiple of five?

Thanks



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 156
Default Rounding to Multiples of Integers?

Try using the "MROUND" function...

Sandy


ConfusedNHouston wrote:
I have a process which involves taking a product of two numbers and then
rounding down to the nearest multiple of five.

Can I write a cell-formula that will ..EITHER .. multiply the two terms AND
round the product to a multiple of five .. OR.. a formula that will take a
single value from a neighboring cell and round it down to the nearest
multiple of five?

Thanks


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 427
Default Rounding to Multiples of Integers?

The formula for "multiply the two terms AND round the product to a
multiple of five" is
=MROUND(A1*B1,5) where A1 and B1 contain your two terms.

The formula for "a formula that will take a single value from a
neighboring cell and round it down to the nearest multiple of five" is
=INT(A1/5)*5 where A1 is the cell reference.



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Rounding to Multiples of Integers?

Ron,

The floor thing was EXACTLY what I needed. It actually worked!
Thank you,
Yngpro59

"Ron Coderre" wrote:

If you want to ROUND DOWN to multiples of 5, try this:

For values in A1 and B1
C1: =FLOOR(A1*B1,5)

Example:
2x2=4......rounded down to 0
2x7=14....rounded down to 10

Does that help?
***********
Regards,
Ron

XL2002, WinXP


"ConfusedNHouston" wrote:

I have a process which involves taking a product of two numbers and then
rounding down to the nearest multiple of five.

Can I write a cell-formula that will ..EITHER .. multiply the two terms AND
round the product to a multiple of five .. OR.. a formula that will take a
single value from a neighboring cell and round it down to the nearest
multiple of five?

Thanks

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I correct rounding errors in Excel formulas? C. Van Dam Excel Worksheet Functions 1 August 29th 06 04:37 AM
rounding to multiples in excel ? HR gal Excel Worksheet Functions 0 August 8th 06 07:38 PM
Rounding to the Nearest Eighth L.sean9 Excel Discussion (Misc queries) 4 June 23rd 06 12:00 AM
A list of Consecutive Integers, can I search for missing integers CM Excel Worksheet Functions 4 September 2nd 05 06:38 PM
Banker's Rounding - need help! Somecallmejosh Excel Discussion (Misc queries) 3 January 20th 05 09:53 PM


All times are GMT +1. The time now is 04:00 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"