Jump to content

Recommended Posts

Posted

Hi all,

 

Hopefully posting in the right place, and not repeating previous posts (I have had a browse, but, may have missed it - apologies if so!).

 

Trying to create a tracker for a BTEC subject - simply put, I want to input a grade, and if the grade is between a certain set of numbers (0-8, for example), I want Excel to either change the number to a piece of text (in this example, 'U'), or, input the 0-8 number, then in the next cell, it equals U. If that makes sense? I have tried many googles but not sure I'm asking the right thing as I'm not getting any usable answers so hoping you guys can help!

 

Thanks!

 

In hope, C.

Posted
If the grade is input into A1 then
=IF((AND(A1>=1,A1<=8)),"U")

will put U into whichever cell you put it.

 

Thank you! :)

 

Next one... Can I put more than one grade in there? So 0-8 = U and 9-15 = Pass?

Posted
Thank you! :)

 

Next one... Can I put more than one grade in there? So 0-8 = U and 9-15 = Pass?

 

This is a job for a lookup table - define your table with grade boundaries (0=U, 9=E, 16=D etc) then use

 

vlookup(cell with value,grade table range,2,true)

  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...