Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Ian
 
Posts: n/a
Default How do I round DOWN only, 24999 to 24000.

In my business, we have to round numbers DOWN, not to the closest 1000, for
values over 50,000. From 20-50,000, we have to round DOWN to the 500. Under
20000, we have to round DOWN to 100. I can't figure it out.
  #2   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

One way

=IF(C2=20000,FLOOR(C2,500),FLOOR(C2,100))


--

Regards,

Peo Sjoblom


"Ian" wrote in message
...
In my business, we have to round numbers DOWN, not to the closest 1000,

for
values over 50,000. From 20-50,000, we have to round DOWN to the 500.

Under
20000, we have to round DOWN to 100. I can't figure it out.



  #3   Report Post  
Bob Phillips
 
Posts: n/a
Default

=if(A1<20000,FLOOR(A1,100),IF(A1<=50000,FLOOR(A1,5 00),FLOOR(A1,1000)))

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Ian" wrote in message
...
In my business, we have to round numbers DOWN, not to the closest 1000,

for
values over 50,000. From 20-50,000, we have to round DOWN to the 500.

Under
20000, we have to round DOWN to 100. I can't figure it out.



  #4   Report Post  
Roger Govier
 
Posts: n/a
Default

Hi Ian

One way would be if A1 conyains your original value
=IF(A150000,ROUNDDOWN(A1,-3),IF(A125000,(ROUNDDOWN(A1/5,-2))*5,ROUNDDOWN(A1,-2)))

--
Regards
Roger Govier
"Ian" wrote in message
...
In my business, we have to round numbers DOWN, not to the closest 1000,
for
values over 50,000. From 20-50,000, we have to round DOWN to the 500.
Under
20000, we have to round DOWN to 100. I can't figure it out.



  #5   Report Post  
Jason Morin
 
Posts: n/a
Default

=FLOOR(A1,LOOKUP(A1,{0,20000,50000},{100,500,1000} ))

HTH
Jason
Atlanta, GA

-----Original Message-----
In my business, we have to round numbers DOWN, not to

the closest 1000, for
values over 50,000. From 20-50,000, we have to round

DOWN to the 500. Under
20000, we have to round DOWN to 100. I can't figure it

out.
.



  #6   Report Post  
Roger Govier
 
Posts: n/a
Default

Hi Jason

Very neat!

--
Regards
Roger Govier
"Jason Morin" wrote in message
...
=FLOOR(A1,LOOKUP(A1,{0,20000,50000},{100,500,1000} ))

HTH
Jason
Atlanta, GA

-----Original Message-----
In my business, we have to round numbers DOWN, not to

the closest 1000, for
values over 50,000. From 20-50,000, we have to round

DOWN to the 500. Under
20000, we have to round DOWN to 100. I can't figure it

out.
.



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 ROUND() round off decimals of a column dataset? Højrup Excel Worksheet Functions 2 January 12th 05 10:50 AM
In Excel, how do you get it to not automatically round my dollars. Cylie G. Excel Worksheet Functions 2 January 7th 05 10:43 PM
Round Up Time IF carl Excel Worksheet Functions 4 January 7th 05 07:25 PM
How can i round off .10 as .50 and .51 as 1.00 Santosh Budalakoti Excel Worksheet Functions 5 December 21st 04 12:58 PM
Round Time cpme Excel Worksheet Functions 2 November 18th 04 07:09 PM


All times are GMT +1. The time now is 12:33 AM.

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

About Us

"It's about Microsoft Excel"