Thread: Requesting Help
View Single Post
  #2   Report Post  
Frank Kabel
 
Posts: n/a
Default

Hi
try the following:
1. Create a lookup table on a separate sheet (e.g. called 'lookup')
with the following layout:
A B C ...
1 b c
2 1 65 75
2 81 75 85
.....

Now in your second sheet in A1 put your pay scale and in B1 the number
of sold cars and use the following formula in C1:
=INDEX('lookup'!$A$1:$D$20,MATCH(B1,'lookup'!$A$1: $A$20,1),MATCH(A1,'lo
okup'!$A$1:$D$1,0))

--
Regards
Frank Kabel
Frankfurt, Germany

"Scooterdog" schrieb im Newsbeitrag
...
My job has 2 pay scales. One is Conductor
& the other is Brakeman.
I need a formula with a table that will do
the following example:

If my pay scale is c and we handle 1 to 80 cars,
my basic pay would be $75.00. If we handle
81 to 105 cars, my basic pay would be $85.00.

Now, if my pay scale is b and we handle 1 to 80 cars,
my basic pay scale would be $65.00. If we handle
81 to 100 cars, my basic pay scale would be $75.00.

This would get me started. BUT, I need the formula
using a table.
Thank you in advance