+ Reply to Thread
Results 1 to 6 of 6

IF or LOOKUP to return different value

  1. #1
    Registered User
    Join Date
    06-09-2009
    Location
    Dubai, UAE
    MS-Off Ver
    Excel 2003
    Posts
    29

    IF or LOOKUP to return different value

    Hey ya'll I'm new here but you've been a great help to me before so I figured I'd give it a shot again.

    Column A lists types of employees (managers, engineers, sales reps, etc.), each of which earns a seperate hourly rate. Column C lists hours worked, and Column D lists the total pay (Cx*Bx).

    So column B is missing. Is there a way to generate the hourly rates in column B for each employee type in collumn A, i.e. if it's an Engineer, return $29, if it's a Technician, return $18, without an infinite set of True/Fasle conditions.

    Please keep in mind that the attachment is a dummy list designed to illustrate the problem. The real thing has many more rows.

    Thanks in advance....
    Attached Files Attached Files
    Last edited by tpillow; 06-15-2009 at 05:41 AM.

  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: IF or LOOKUP to return different value

    Store the EE type & associated rate in a table and use a VLOOKUP in Column B.

    eg

    F1: Engineer G1: 29
    F2: Technician G2: 18
    F3: Site Specialist G3: x
    etc... for all roles

    then

    B2: =IF($A2<>"",VLOOKUP($A2,$F$1:$G$100,2,0),"")

  3. #3
    Registered User
    Join Date
    06-09-2009
    Location
    Dubai, UAE
    MS-Off Ver
    Excel 2003
    Posts
    29

    Re: IF or LOOKUP to return different value

    That works, thanks a lot.

    Just curious, is there a way to do that without creating a seperate table?

  4. #4
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: IF or LOOKUP to return different value

    Depending on how many roles you have you could use an inline array constant, ie:

    =IF($A2<>"",VLOOKUP($A2,{"Engineer",29;"Technician",18;"Site Specialist",12},2,0),"")

    If you have lots a table is best... it's easier to adapt.
    (the table need not be on the same sheet as your data of course)

  5. #5
    Registered User
    Join Date
    06-09-2009
    Location
    Dubai, UAE
    MS-Off Ver
    Excel 2003
    Posts
    29

    Re: IF or LOOKUP to return different value

    OK swell. Thanks a lot!

  6. #6
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: IF or LOOKUP to return different value

    another way
    =INDEX({30,25,28,40,50,18},MATCH(A2,{"Site Specialist","Sales Rep.","Engineer","Sales Manager","Consultant","Technician"},0))
    "Unless otherwise stated all my comments are directed at OP"

    Mojito connoisseur and now happily retired
    where does code go ?
    look here
    how to insert code

    how to enter array formula

    why use -- in sumproduct
    recommended reading
    wiki Mojito

    how to say no convincingly

    most important thing you need
    Martin Wilson: SPV
    and RSMBC

+ 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