Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default Formula Help

I have a spreadsheet that I would like to calculate pay for my employees.
The get a special rate depending on how many times they do function. Also I
have different level for employees skill levels. Example

Level I
Jobs Pay
1 $15
2 $35
3 $55
4 $70
5 $85

Level IV
Jobs Pay
1 $21.25
2 $55
3 $75
4 $100
5 $120

I keep track of the numbers per shift

Exampe

Employee Start End Jobs Pay
John 0900 1500 5
Joe 0900 1200 2


John is a level 4
Joe is leve 2

I need the formula to calculate the pay column

Any ideas?

Thanks

Tom





  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Formula Help

Any formula would requiring knowing how all the data is laid out and where
the table is that defines the level for each employee.

In any event, you would use functions like Offset, index, vlookup, lookup
and related.

--
Regards,
Tom Ogilvy


"KeyWest JetSki" wrote in message
...
I have a spreadsheet that I would like to calculate pay for my employees.
The get a special rate depending on how many times they do function. Also

I
have different level for employees skill levels. Example

Level I
Jobs Pay
1 $15
2 $35
3 $55
4 $70
5 $85

Level IV
Jobs Pay
1 $21.25
2 $55
3 $75
4 $100
5 $120

I keep track of the numbers per shift

Exampe

Employee Start End Jobs Pay
John 0900 1500 5
Joe 0900 1200 2


John is a level 4
Joe is leve 2

I need the formula to calculate the pay column

Any ideas?

Thanks

Tom







  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default Formula Help

Tom

the table is on paper not in the spreadsheet how would I add that to the
spreadsheet?

Tom

"Tom Ogilvy" wrote in message
...
Any formula would requiring knowing how all the data is laid out and where
the table is that defines the level for each employee.

In any event, you would use functions like Offset, index, vlookup,
lookup
and related.

--
Regards,
Tom Ogilvy


"KeyWest JetSki" wrote in message
...
I have a spreadsheet that I would like to calculate pay for my employees.
The get a special rate depending on how many times they do function. Also

I
have different level for employees skill levels. Example

Level I
Jobs Pay
1 $15
2 $35
3 $55
4 $70
5 $85

Level IV
Jobs Pay
1 $21.25
2 $55
3 $75
4 $100
5 $120

I keep track of the numbers per shift

Exampe

Employee Start End Jobs Pay
John 0900 1500 5
Joe 0900 1200 2


John is a level 4
Joe is leve 2

I need the formula to calculate the pay column

Any ideas?

Thanks

Tom









  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Formula Help

Type it in or scan it in.

--
Regards,
Tom Ogilvy

"KeyWest JetSki" wrote in message
...
Tom

the table is on paper not in the spreadsheet how would I add that to the
spreadsheet?

Tom

"Tom Ogilvy" wrote in message
...
Any formula would requiring knowing how all the data is laid out and

where
the table is that defines the level for each employee.

In any event, you would use functions like Offset, index, vlookup,
lookup
and related.

--
Regards,
Tom Ogilvy


"KeyWest JetSki" wrote in message
...
I have a spreadsheet that I would like to calculate pay for my

employees.
The get a special rate depending on how many times they do function.

Also
I
have different level for employees skill levels. Example

Level I
Jobs Pay
1 $15
2 $35
3 $55
4 $70
5 $85

Level IV
Jobs Pay
1 $21.25
2 $55
3 $75
4 $100
5 $120

I keep track of the numbers per shift

Exampe

Employee Start End Jobs Pay
John 0900 1500 5
Joe 0900 1200 2


John is a level 4
Joe is leve 2

I need the formula to calculate the pay column

Any ideas?

Thanks

Tom











  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default Formula Help

Tom

My question was how to create a table in the spreadsheet
I already type the table into rows and columns

Tom

"Tom Ogilvy" wrote in message
...
Type it in or scan it in.

--
Regards,
Tom Ogilvy

"KeyWest JetSki" wrote in message
...
Tom

the table is on paper not in the spreadsheet how would I add that to the
spreadsheet?

Tom

"Tom Ogilvy" wrote in message
...
Any formula would requiring knowing how all the data is laid out and

where
the table is that defines the level for each employee.

In any event, you would use functions like Offset, index, vlookup,
lookup
and related.

--
Regards,
Tom Ogilvy


"KeyWest JetSki" wrote in message
...
I have a spreadsheet that I would like to calculate pay for my

employees.
The get a special rate depending on how many times they do function.

Also
I
have different level for employees skill levels. Example

Level I
Jobs Pay
1 $15
2 $35
3 $55
4 $70
5 $85

Level IV
Jobs Pay
1 $21.25
2 $55
3 $75
4 $100
5 $120

I keep track of the numbers per shift

Exampe

Employee Start End Jobs Pay
John 0900 1500 5
Joe 0900 1200 2


John is a level 4
Joe is leve 2

I need the formula to calculate the pay column

Any ideas?

Thanks

Tom















  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Formula Help

That is a table. You don't need to create it. If you would like to make it
a named range, select the data and do

Insert=Name=Define

Name: Table1
Refersto: -- will already have the address of the selection

Click the Add button.

Now in a formula (as an example)

=vlookup(A1,Table1,2,False)

where A1 contains John or whatever identifies the employee and is in the
leftmost column of the table.

This would return the employees type if it were in column 2 of the
table/data.

You could replace Table1 in the formula above with the raw address if you
didn't want to name the range.

--
Regards,
Tom Ogilvy

"KeyWest JetSki" wrote in message
...
Tom

My question was how to create a table in the spreadsheet
I already type the table into rows and columns

Tom

"Tom Ogilvy" wrote in message
...
Type it in or scan it in.

--
Regards,
Tom Ogilvy

"KeyWest JetSki" wrote in message
...
Tom

the table is on paper not in the spreadsheet how would I add that to

the
spreadsheet?

Tom

"Tom Ogilvy" wrote in message
...
Any formula would requiring knowing how all the data is laid out and

where
the table is that defines the level for each employee.

In any event, you would use functions like Offset, index, vlookup,
lookup
and related.

--
Regards,
Tom Ogilvy


"KeyWest JetSki" wrote in message
...
I have a spreadsheet that I would like to calculate pay for my

employees.
The get a special rate depending on how many times they do function.

Also
I
have different level for employees skill levels. Example

Level I
Jobs Pay
1 $15
2 $35
3 $55
4 $70
5 $85

Level IV
Jobs Pay
1 $21.25
2 $55
3 $75
4 $100
5 $120

I keep track of the numbers per shift

Exampe

Employee Start End Jobs Pay
John 0900 1500 5
Joe 0900 1200 2


John is a level 4
Joe is leve 2

I need the formula to calculate the pay column

Any ideas?

Thanks

Tom















Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Commenting custom formula fields/formula on formula editor Muxer Excel Programming 2 July 24th 03 01:02 AM


All times are GMT +1. The time now is 12:30 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"