• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Ranges

I am developing a form which will look for a number from a range based on the result total. I created 2 named ranges one is training and the second is writing.

Not sure how else I can design the range sheet.

Any suggestions will help me a lot.

Thanks
 

Attachments

  • ranges.xlsx
    11 KB · Views: 6
L3: =VLOOKUP(training,G4:I8,3)
L4: =VLOOKUP(writing,G9:I13,3)
 
I am developing a form which will look for a number from a range based on the result total. I created 2 named ranges one is training and the second is writing.

Not sure how else I can design the range sheet.

Any suggestions will help me a lot.

Thanks


Thanks Mr. Hui. I was over thinking about this issue. Your solution was simple and I know vlookups. Not sure why I didnt think out Vlookups.

Thanks again for your help
 
Or…………………

In L3, formula copied down to L4 :

=VLOOKUP(K3&INDIRECT(K3),INDEX(TEXT($F$4:$H$13,";;")&$G$4:$I$13,0),3)

Regards
Bosco
 
Or…………………

In L3, formula copied down to L4 :

=VLOOKUP(K3&INDIRECT(K3),INDEX(TEXT($F$4:$H$13,";;")&$G$4:$I$13,0),3)

Regards
Bosco

Thanks Mr. Bosco.
Or…………………

In L3, formula copied down to L4 :

=VLOOKUP(K3&INDIRECT(K3),INDEX(TEXT($F$4:$H$13,";;")&$G$4:$I$13,0),3)

Regards
Bosco




Mr. Bosco,
If the result is 7 which is between 1 - 10 the formula is picking the last range result 49. Can you check this. Not sure why. Please see attached

Thanks
 

Attachments

  • ranges.xlsx
    11 KB · Views: 5
Mr. Bosco,
If the result is 7 which is between 1 - 10 the formula is picking the last range result 49. Can you check this. Not sure why. Please see attached

Changed the L3 formula to

=VLOOKUP(INDIRECT(K3),IF(K3="Training",G$4:I$8,G$9:I$13),3)

and copied down to L4

Regards
Bosco
 
Back
Top