NESTED IF FUNCTION HELP! TEACHER needs it to help students please!!!

wildmountainrose

New Member
Joined
Sep 7, 2015
Messages
2
I am not an expert but I can get around excel through trial and error and tutorials. Trying to create an if function to assess student data. I have a ruberic for student scores that I am trying to turn into an IF nested function or some other way to be able to take the score in one cell and turn it into the description in a seperate cell ex: Cell C1=14 Cell D1=Approaching standard so I can sort and group students. This is my ruberic....
Meeting Standard 19-25 points
Approaching Standard 13-18 points
Strategic 7-12 points
Intensive 6 points or less

this is the formula im trying :
=if(AND(A4>19,"Meeting Standard"),if (A4 <12 and A4<19,"approaching standard",if (A4>5 and A4<13,"strategic",if (A4<6,"intensive")))))

am I close? Anybody have any tips

 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Try it like this...

=IF(A4<=6,"Intensive",IF(A4<=12,"Strategic",IF(A4<=18,"Approaching Standard",IF(A4<=25,"Meeting Standard","No description for that number"))))
 
Upvote 0

Forum statistics

Threads
1,215,737
Messages
6,126,558
Members
449,318
Latest member
Son Raphon

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top