Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11
Default function query - not sure which one possibly vlookup

I am trying to pick information on salary spinal column points within certain
grades. I want to look at the current scp in cell J2 and then get the next
scp for that grade. The grade information is in cell I2.

eg if I2 is grade 2 and J2 is SCP 11 then put the next SCP in cell T2 (13).
This would change until the top of the scale is reached. Anyone in Grade 2
cannot go above SCP 13. Lookup table for info below has been defined as SCP.

Grade SCP
1 1
1 3
1 5
2 7
2 9
2 11
2 13
3 15
3 17
3 19
3 21
4 23
4 25
4 27
4 29
5 31
5 33
5 35
5 37
6 39
6 41
6 43
6 45

Help with this would be greatly appreciated - really think I need a years
course on these lookups etc.

--
Lainyb
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 913
Default function query - not sure which one possibly vlookup

On Sat, 7 Nov 2009 11:48:01 -0800, Lainyb
wrote:

I am trying to pick information on salary spinal column points within certain
grades. I want to look at the current scp in cell J2 and then get the next
scp for that grade. The grade information is in cell I2.

eg if I2 is grade 2 and J2 is SCP 11 then put the next SCP in cell T2 (13).
This would change until the top of the scale is reached. Anyone in Grade 2
cannot go above SCP 13. Lookup table for info below has been defined as SCP.

Grade SCP
1 1
1 3
1 5
2 7
2 9
2 11
2 13
3 15
3 17
3 19
3 21
4 23
4 25
4 27
4 29
5 31
5 33
5 35
5 37
6 39
6 41
6 43
6 45

Help with this would be greatly appreciated - really think I need a years
course on these lookups etc.



Assuming cells I2 and J2 always contain a valid combination of Grade
and SCP, and that the table of valid Grade and SCP are in cells
A2:B24, try the following formula in cell T2:

=IF(INDEX(A2:A25,MATCH(J2,B2:B24)+1)<I2,J2,INDEX( B2:B24,MATCH(J2,B2:B24)+1))

This formula will give the next SCP for the grade in I2, but if the
SCP is the maximum SCP for that grade, the result will be that max
SCP.

Hope this helps / Lars-Åke

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 73
Default function query - not sure which one possibly vlookup

You don't say what should happen if J2 is already the max for the grade.

Try this array formula** :

=IF(J2=LOOKUP(2,1/(A2:A24=I2),B2:B24),"Already at max for the
grade",INDEX(B2:B24,MATCH(1,(A2:A24=I2)*(B2:B24=J2 ),0)+1))

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT
key then hit ENTER.

--
Biff
Microsoft Excel MVP


"Lainyb" wrote:

I am trying to pick information on salary spinal column points within certain
grades. I want to look at the current scp in cell J2 and then get the next
scp for that grade. The grade information is in cell I2.

eg if I2 is grade 2 and J2 is SCP 11 then put the next SCP in cell T2 (13).
This would change until the top of the scale is reached. Anyone in Grade 2
cannot go above SCP 13. Lookup table for info below has been defined as SCP.

Grade SCP
1 1
1 3
1 5
2 7
2 9
2 11
2 13
3 15
3 17
3 19
3 21
4 23
4 25
4 27
4 29
5 31
5 33
5 35
5 37
6 39
6 41
6 43
6 45

Help with this would be greatly appreciated - really think I need a years
course on these lookups etc.

--
Lainyb

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default function query - not sure which one possibly vlookup

mark

--
Biff
Microsoft Excel MVP


"T. Valko" wrote in message
...
You don't say what should happen if J2 is already the max for the grade.

Try this array formula** :

=IF(J2=LOOKUP(2,1/(A2:A24=I2),B2:B24),"Already at max for the
grade",INDEX(B2:B24,MATCH(1,(A2:A24=I2)*(B2:B24=J2 ),0)+1))

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the
SHIFT
key then hit ENTER.

--
Biff
Microsoft Excel MVP


"Lainyb" wrote:

I am trying to pick information on salary spinal column points within
certain
grades. I want to look at the current scp in cell J2 and then get the
next
scp for that grade. The grade information is in cell I2.

eg if I2 is grade 2 and J2 is SCP 11 then put the next SCP in cell T2
(13).
This would change until the top of the scale is reached. Anyone in Grade
2
cannot go above SCP 13. Lookup table for info below has been defined as
SCP.

Grade SCP
1 1
1 3
1 5
2 7
2 9
2 11
2 13
3 15
3 17
3 19
3 21
4 23
4 25
4 27
4 29
5 31
5 33
5 35
5 37
6 39
6 41
6 43
6 45

Help with this would be greatly appreciated - really think I need a years
course on these lookups etc.

--
Lainyb



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11
Default function query - not sure which one possibly vlookup

Hi thanks for that - I should have said that when the max for the grade is
reached I2 should stay the same as J2.

I have tried your formula and it is returning #N/A - any idea of where I am
going wrong.

The lookup information for cell I2 (grade) is in B2:B60 therefore I
substituted your A2:24 with B2:B60 and the spinal point information to be
returned in cell T2 is in the lookup under C2:C60 so I substituted your
B2:B24 with C2:C60.

Thanks
--
Lainyb


"T. Valko" wrote:

You don't say what should happen if J2 is already the max for the grade.

Try this array formula** :

=IF(J2=LOOKUP(2,1/(A2:A24=I2),B2:B24),"Already at max for the
grade",INDEX(B2:B24,MATCH(1,(A2:A24=I2)*(B2:B24=J2 ),0)+1))

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT
key then hit ENTER.

--
Biff
Microsoft Excel MVP


"Lainyb" wrote:

I am trying to pick information on salary spinal column points within certain
grades. I want to look at the current scp in cell J2 and then get the next
scp for that grade. The grade information is in cell I2.

eg if I2 is grade 2 and J2 is SCP 11 then put the next SCP in cell T2 (13).
This would change until the top of the scale is reached. Anyone in Grade 2
cannot go above SCP 13. Lookup table for info below has been defined as SCP.

Grade SCP
1 1
1 3
1 5
2 7
2 9
2 11
2 13
3 15
3 17
3 19
3 21
4 23
4 25
4 27
4 29
5 31
5 33
5 35
5 37
6 39
6 41
6 43
6 45

Help with this would be greatly appreciated - really think I need a years
course on these lookups etc.

--
Lainyb



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 73
Default function query - not sure which one possibly vlookup

when the max for the grade is
reached I2 should stay the same as J2.


OK, let's change the array formula** to this:

Grade refers to B2:B60
SCP refers to C2:C60

=IF(J2=LOOKUP(2,1/(Grade=I2),SCP),J2,INDEX(SCP,MATCH(1,(Grade=I2)*(S CP=J2),0)+1))

I have tried your formula and it is returning #N/A


Make sure you enter the formula as an array**.

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT
key then hit ENTER.


--
Biff
Microsoft Excel MVP


"Lainyb" wrote:

Hi thanks for that - I should have said that when the max for the grade is
reached I2 should stay the same as J2.

I have tried your formula and it is returning #N/A - any idea of where I am
going wrong.

The lookup information for cell I2 (grade) is in B2:B60 therefore I
substituted your A2:24 with B2:B60 and the spinal point information to be
returned in cell T2 is in the lookup under C2:C60 so I substituted your
B2:B24 with C2:C60.

Thanks
--
Lainyb


"T. Valko" wrote:

You don't say what should happen if J2 is already the max for the grade.

Try this array formula** :

=IF(J2=LOOKUP(2,1/(A2:A24=I2),B2:B24),"Already at max for the
grade",INDEX(B2:B24,MATCH(1,(A2:A24=I2)*(B2:B24=J2 ),0)+1))

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT
key then hit ENTER.

--
Biff
Microsoft Excel MVP


"Lainyb" wrote:

I am trying to pick information on salary spinal column points within certain
grades. I want to look at the current scp in cell J2 and then get the next
scp for that grade. The grade information is in cell I2.

eg if I2 is grade 2 and J2 is SCP 11 then put the next SCP in cell T2 (13).
This would change until the top of the scale is reached. Anyone in Grade 2
cannot go above SCP 13. Lookup table for info below has been defined as SCP.

Grade SCP
1 1
1 3
1 5
2 7
2 9
2 11
2 13
3 15
3 17
3 19
3 21
4 23
4 25
4 27
4 29
5 31
5 33
5 35
5 37
6 39
6 41
6 43
6 45

Help with this would be greatly appreciated - really think I need a years
course on these lookups etc.

--
Lainyb

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11
Default function query - not sure which one possibly vlookup

Thanks very much for your help with this. It is now working.

Thanks again.


--
Lainyb


"T. Valko" wrote:

when the max for the grade is
reached I2 should stay the same as J2.


OK, let's change the array formula** to this:

Grade refers to B2:B60
SCP refers to C2:C60

=IF(J2=LOOKUP(2,1/(Grade=I2),SCP),J2,INDEX(SCP,MATCH(1,(Grade=I2)*(S CP=J2),0)+1))

I have tried your formula and it is returning #N/A


Make sure you enter the formula as an array**.

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT
key then hit ENTER.


--
Biff
Microsoft Excel MVP


"Lainyb" wrote:

Hi thanks for that - I should have said that when the max for the grade is
reached I2 should stay the same as J2.

I have tried your formula and it is returning #N/A - any idea of where I am
going wrong.

The lookup information for cell I2 (grade) is in B2:B60 therefore I
substituted your A2:24 with B2:B60 and the spinal point information to be
returned in cell T2 is in the lookup under C2:C60 so I substituted your
B2:B24 with C2:C60.

Thanks
--
Lainyb


"T. Valko" wrote:

You don't say what should happen if J2 is already the max for the grade.

Try this array formula** :

=IF(J2=LOOKUP(2,1/(A2:A24=I2),B2:B24),"Already at max for the
grade",INDEX(B2:B24,MATCH(1,(A2:A24=I2)*(B2:B24=J2 ),0)+1))

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT
key then hit ENTER.

--
Biff
Microsoft Excel MVP


"Lainyb" wrote:

I am trying to pick information on salary spinal column points within certain
grades. I want to look at the current scp in cell J2 and then get the next
scp for that grade. The grade information is in cell I2.

eg if I2 is grade 2 and J2 is SCP 11 then put the next SCP in cell T2 (13).
This would change until the top of the scale is reached. Anyone in Grade 2
cannot go above SCP 13. Lookup table for info below has been defined as SCP.

Grade SCP
1 1
1 3
1 5
2 7
2 9
2 11
2 13
3 15
3 17
3 19
3 21
4 23
4 25
4 27
4 29
5 31
5 33
5 35
5 37
6 39
6 41
6 43
6 45

Help with this would be greatly appreciated - really think I need a years
course on these lookups etc.

--
Lainyb

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 73
Default function query - not sure which one possibly vlookup

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"Lainyb" wrote:

Thanks very much for your help with this. It is now working.

Thanks again.


--
Lainyb


"T. Valko" wrote:

when the max for the grade is
reached I2 should stay the same as J2.


OK, let's change the array formula** to this:

Grade refers to B2:B60
SCP refers to C2:C60

=IF(J2=LOOKUP(2,1/(Grade=I2),SCP),J2,INDEX(SCP,MATCH(1,(Grade=I2)*(S CP=J2),0)+1))

I have tried your formula and it is returning #N/A


Make sure you enter the formula as an array**.

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT
key then hit ENTER.


--
Biff
Microsoft Excel MVP


"Lainyb" wrote:

Hi thanks for that - I should have said that when the max for the grade is
reached I2 should stay the same as J2.

I have tried your formula and it is returning #N/A - any idea of where I am
going wrong.

The lookup information for cell I2 (grade) is in B2:B60 therefore I
substituted your A2:24 with B2:B60 and the spinal point information to be
returned in cell T2 is in the lookup under C2:C60 so I substituted your
B2:B24 with C2:C60.

Thanks
--
Lainyb


"T. Valko" wrote:

You don't say what should happen if J2 is already the max for the grade.

Try this array formula** :

=IF(J2=LOOKUP(2,1/(A2:A24=I2),B2:B24),"Already at max for the
grade",INDEX(B2:B24,MATCH(1,(A2:A24=I2)*(B2:B24=J2 ),0)+1))

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT
key then hit ENTER.

--
Biff
Microsoft Excel MVP


"Lainyb" wrote:

I am trying to pick information on salary spinal column points within certain
grades. I want to look at the current scp in cell J2 and then get the next
scp for that grade. The grade information is in cell I2.

eg if I2 is grade 2 and J2 is SCP 11 then put the next SCP in cell T2 (13).
This would change until the top of the scale is reached. Anyone in Grade 2
cannot go above SCP 13. Lookup table for info below has been defined as SCP.

Grade SCP
1 1
1 3
1 5
2 7
2 9
2 11
2 13
3 15
3 17
3 19
3 21
4 23
4 25
4 27
4 29
5 31
5 33
5 35
5 37
6 39
6 41
6 43
6 45

Help with this would be greatly appreciated - really think I need a years
course on these lookups etc.

--
Lainyb

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
IF Function (Possibly) to Apply a Value Depending on Value Toria Excel Worksheet Functions 5 August 23rd 09 08:02 PM
Nested hlookup/vlookup (possibly just an if statement though?!?) mike_vr Excel Discussion (Misc queries) 1 August 4th 09 07:47 PM
Need to reorganize data on a separate sheet possibly using vlookup Asa_johannesen Excel Worksheet Functions 2 May 16th 08 07:07 PM
Need help with complicated Vlookup, or possibly other function havocdragon Excel Worksheet Functions 1 October 9th 06 08:20 AM
HELP with function, possibly code! Jay Excel Worksheet Functions 8 April 8th 05 08:17 PM


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

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

About Us

"It's about Microsoft Excel"