+ Reply to Thread
Results 1 to 2 of 2

Please help!!! This is hard to explain!

  1. #1
    Registered User
    Join Date
    01-10-2005
    Posts
    11

    Question Please help!!! This is hard to explain!

    I need the ranges to go from $250 to $2800 in increments of $25
    The formula needs to be from $250-$2800

    Examples:
    If A1 was $22.50 A2 would be $25
    If A1 was $1525.01 than A2 would be 1550

    I need to create something that will give me the following ranges:

    Ranges:
    $250-275 will go to 275
    $275.01-300 will go to300
    $300.01-325 will go to325

    So if the formula read something like =IF(A1=<250,"$ amount to low")IF(A1=*more than 250 but less than or equal to 275 than 275*) IF(A1=*more than 275 but less than or equal to 300 than 300*)

    Should I create another worksheet to write the formula to than reference it to sheet 1?
    I know almost nothing about excel 2002 so please be easy on me

    Thanks!
    Robert J. Sadler
    robertjsadler@msn.com

  2. #2
    Forum Contributor
    Join Date
    11-09-2004
    Posts
    451
    try this formula ,

    c14 is the cell value which is being evaluated


    =IF(AND(C14>=25,C14<=2800),IF(MOD(C14,25)=0,C14,INT(C14/25)*25+25),IF(C14<25,25,IF(C14>2800,2800)))

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1