ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Varied Pay rates (https://www.excelbanter.com/excel-discussion-misc-queries/180925-varied-pay-rates.html)

Peter Welly

Varied Pay rates
 
Hi, could anyone help me. I have been entering my own pay rates into excel
for a long time now and realised that there should be an easier way to keep
track of the various rates for the different types of equipment I operate.
What I would like to do is when I enter a value in the "Size" column of my
worksheet I want the pay rate to be a particular figure. There are 4
different rates that I need to track. For example when I enter 45 into the
size column I want 23.62 to go into the rate column , when I enter 55 in the
size column I want 22.68 in the rate column etc. If anyone could help me it
would be greatly appreciated.



Barb Reinhardt

Varied Pay rates
 
You could use VLOOKUP.

http://www.contextures.com/xlFunctions02.html
--
HTH,
Barb Reinhardt



"Peter Welly" wrote:

Hi, could anyone help me. I have been entering my own pay rates into excel
for a long time now and realised that there should be an easier way to keep
track of the various rates for the different types of equipment I operate.
What I would like to do is when I enter a value in the "Size" column of my
worksheet I want the pay rate to be a particular figure. There are 4
different rates that I need to track. For example when I enter 45 into the
size column I want 23.62 to go into the rate column , when I enter 55 in the
size column I want 22.68 in the rate column etc. If anyone could help me it
would be greatly appreciated.



Tyro[_2_]

Varied Pay rates
 
It sounds like you want to have 4 sizes in A1:A4 and the corresponding rates
in B1:B4. If you want to enter a size in C10, say 45, and want to have the
corresponding rate in D20 then in D20 just enter
=VLOOKUP(C10,A1:B4,2,FALSE). The formula looks up the 45 from cell C10 and
returns the value from B1, 23.62 to D20 and similarly from the other cells
in A1:B4. You may find more information in the VLOOKUP function in Excel
help.

Tyro

"Peter Welly" wrote in message
...
Hi, could anyone help me. I have been entering my own pay rates into excel
for a long time now and realised that there should be an easier way to
keep
track of the various rates for the different types of equipment I operate.
What I would like to do is when I enter a value in the "Size" column of my
worksheet I want the pay rate to be a particular figure. There are 4
different rates that I need to track. For example when I enter 45 into the
size column I want 23.62 to go into the rate column , when I enter 55 in
the
size column I want 22.68 in the rate column etc. If anyone could help me
it
would be greatly appreciated.





Cimjet[_2_]

Varied Pay rates
 
Hi Peter
Try this formula =IF(A1=45,23.62,IF(A1=55,22.68,""))
HTH
Cimjet
"Peter Welly" wrote in message
...
Hi, could anyone help me. I have been entering my own pay rates into excel
for a long time now and realised that there should be an easier way to
keep
track of the various rates for the different types of equipment I operate.
What I would like to do is when I enter a value in the "Size" column of my
worksheet I want the pay rate to be a particular figure. There are 4
different rates that I need to track. For example when I enter 45 into the
size column I want 23.62 to go into the rate column , when I enter 55 in
the
size column I want 22.68 in the rate column etc. If anyone could help me
it
would be greatly appreciated.




Peter Welly

Varied Pay rates
 


"Barb Reinhardt" wrote:

You could use VLOOKUP.

http://www.contextures.com/xlFunctions02.html
--
HTH,
Barb Reinhardt



"Peter Welly" wrote:

Hi, could anyone help me. I have been entering my own pay rates into excel
for a long time now and realised that there should be an easier way to keep
track of the various rates for the different types of equipment I operate.
What I would like to do is when I enter a value in the "Size" column of my
worksheet I want the pay rate to be a particular figure. There are 4
different rates that I need to track. For example when I enter 45 into the
size column I want 23.62 to go into the rate column , when I enter 55 in the
size column I want 22.68 in the rate column etc. If anyone could help me it
would be greatly appreciated.


I am still confused, could I email you a screenshot of what I am doing then
you might be able to explain it a bit more.
If any one else is able to receive a screenshot from me, please let me know.

Thanks


Peter Welly

Varied Pay rates
 
Thank you everyone for your help. Cimjet was able to solve my problem.

Regards Peter


"Cimjet" wrote:

Hi Peter
Try this formula =IF(A1=45,23.62,IF(A1=55,22.68,""))
HTH
Cimjet
"Peter Welly" wrote in message
...
Hi, could anyone help me. I have been entering my own pay rates into excel
for a long time now and realised that there should be an easier way to
keep
track of the various rates for the different types of equipment I operate.
What I would like to do is when I enter a value in the "Size" column of my
worksheet I want the pay rate to be a particular figure. There are 4
different rates that I need to track. For example when I enter 45 into the
size column I want 23.62 to go into the rate column , when I enter 55 in
the
size column I want 22.68 in the rate column etc. If anyone could help me
it
would be greatly appreciated.





Gord Dibben

Varied Pay rates
 
Assuming "Size" column is B and that is where you enter the numbers.

Enter this in C1, adjust sizes and rates to suit.

=LOOKUP(B1,{45,55,65,75},{23.62,22.68,21.44,25,66} )

Note.........the sizes{45,55,65,75} in the formula must be in ascending order.

Drag/copy down column C


Gord Dibben MS Excel MVP

On Fri, 21 Mar 2008 17:23:31 -0700, Peter Welly
wrote:

Hi, could anyone help me. I have been entering my own pay rates into excel
for a long time now and realised that there should be an easier way to keep
track of the various rates for the different types of equipment I operate.
What I would like to do is when I enter a value in the "Size" column of my
worksheet I want the pay rate to be a particular figure. There are 4
different rates that I need to track. For example when I enter 45 into the
size column I want 23.62 to go into the rate column , when I enter 55 in the
size column I want 22.68 in the rate column etc. If anyone could help me it
would be greatly appreciated.



Tyro[_2_]

Varied Pay rates
 
You had only 2 rates??? You should read a book on Excel such as one written
by John Walkenback and learn how to use Excel.

Tyro

"Peter Welly" wrote in message
...
Thank you everyone for your help. Cimjet was able to solve my problem.

Regards Peter


"Cimjet" wrote:

Hi Peter
Try this formula =IF(A1=45,23.62,IF(A1=55,22.68,""))
HTH
Cimjet
"Peter Welly" wrote in message
...
Hi, could anyone help me. I have been entering my own pay rates into
excel
for a long time now and realised that there should be an easier way to
keep
track of the various rates for the different types of equipment I
operate.
What I would like to do is when I enter a value in the "Size" column of
my
worksheet I want the pay rate to be a particular figure. There are 4
different rates that I need to track. For example when I enter 45 into
the
size column I want 23.62 to go into the rate column , when I enter 55
in
the
size column I want 22.68 in the rate column etc. If anyone could help
me
it
would be greatly appreciated.








All times are GMT +1. The time now is 04:41 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com