+ Reply to Thread
Results 1 to 6 of 6

Calculate dollar amount paid if between a to and from amount

Hybrid View

  1. #1
    Registered User
    Join Date
    02-18-2006
    Location
    WV
    MS-Off Ver
    2003,2007,2010
    Posts
    79

    Calculate dollar amount paid if between a to and from amount

    Hello, I have a chart that has in dollar amounts a "Wages in base period" Starting in row C and ending in row E and if your within that range then it would display the "Weekly benefit rate" OR if below $2,200.00 it would display the words "INELIGIBLE" both in (Cell I5). The number that would be entered to see what rate you would get would be in (I4) How would I do this?

    Example:

    If I entered $5,500.00 into I4
    it would display $58.00 in I5

    Example 2:

    If I entered $2,100.00 in I4
    it would display INELIGABLE in I5
    Attached Files Attached Files
    Last edited by oxicottin; 11-21-2012 at 08:01 PM. Reason: solved

  2. #2
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2504 Win 11
    Posts
    24,698

    Re: Calculate dollar amount paid if between a to and from amount

    Try this:

    =VLOOKUP(I4,$C$5:$G$259,4,TRUE)
    Alan עַם יִשְׂרָאֵל חַי


    Change an Ugly Report with Power Query
    Database Normalization
    Complete Guide to Power Query
    Man's Mind Stretched to New Dimensions Never Returns to Its Original Form

  3. #3
    Registered User
    Join Date
    02-18-2006
    Location
    WV
    MS-Off Ver
    2003,2007,2010
    Posts
    79

    Re: Calculate dollar amount paid if between a to and from amount

    This works but to a point, If I enter below the 2,200.00 it should display "INELIGABLE" instead it shows #N/A and if the cell I4 is empty then it also shows a #N/A and it will always start out empty. How can I incorporate? Thanks!

  4. #4
    Forum Expert ConneXionLost's Avatar
    Join Date
    03-11-2009
    Location
    Victoria, Canada
    MS-Off Ver
    2010
    Posts
    2,952

    Re: Calculate dollar amount paid if between a to and from amount

    How about:

    =VLOOKUP(I4,C5:G259,4,1)
    Would you like to say thanks? Please click the: " Add Reputation" button, on the grey bar below the post.

  5. #5
    Forum Expert ConneXionLost's Avatar
    Join Date
    03-11-2009
    Location
    Victoria, Canada
    MS-Off Ver
    2010
    Posts
    2,952

    Re: Calculate dollar amount paid if between a to and from amount

    Try this:

    =IF(I4="","",IF(I4<C5,F5,VLOOKUP(I4,C5:G259,4,1)))

  6. #6
    Registered User
    Join Date
    02-18-2006
    Location
    WV
    MS-Off Ver
    2003,2007,2010
    Posts
    79

    Re: Calculate dollar amount paid if between a to and from amount

    Quote Originally Posted by ConneXionLost View Post
    Try this:

    =IF(I4="","",IF(I4<C5,F5,VLOOKUP(I4,C5:G259,4,1)))

    Works awesome thanks all for the help in the formula!

+ 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