Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need to find the formula that can match a specified monetary value to a name.
For instance if I type in A1 Name1 then in B1 $14.00 comes in or if I would have typed in Name2 then $18.00 would pop in. I need this calculation to automatically pop in someone's hourly pay by what name I put in. I think I have to come up eith a simply pay chart to reference but I don't know where to start. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Sarah,
You need a table of names and corresponding hourly rates then you can use VLOOKUP to get the rate for a name. Assume names and rates are in columns A & B of Sheet2. Name the range (say) "HourlyRates". on Sheet1 with A1=Name, in B1 put: =IF(ISNA(VLOOKUP(A1,HourlyRates,2,0)),"Name not found",VLOOKUP(A1,HourlyRates,2,0)) HTH "Sarah S" wrote: I need to find the formula that can match a specified monetary value to a name. For instance if I type in A1 Name1 then in B1 $14.00 comes in or if I would have typed in Name2 then $18.00 would pop in. I need this calculation to automatically pop in someone's hourly pay by what name I put in. I think I have to come up eith a simply pay chart to reference but I don't know where to start. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Matching a name to a specified monetary amount | Excel Worksheet Functions | |||
Formatting monetary amounts with currency indicator on extreme left and amount right ? | Excel Discussion (Misc queries) | |||
Matching the same amount of records in one value to another column | Excel Worksheet Functions | |||
Matching one column against another column of data to show the same amount of data. | Excel Worksheet Functions | |||
Format monetary amount to 9 digits with No decimals without rounding | Excel Worksheet Functions |