Hi, completely new at excel forumals and my google search keeps leading to a tut that is 1 step below what I need.
Basically I have a tally of scores and at the end a total sum of those scores. Lets say F1 is the total of someones score.
Essentially I just want the next column (G1) to tell me if someone is at FAIL,PASS,CREDIT or DISTINCTION stage.
this is my own formula that is not excel compliant!:
IF F1<50=FAIL, F2>50 but <60=PASS, F2>60 but <70=CREDIT, F2>70=DISTINCTION
If anyone could help me out or point me to a tut that covers this that would be great.
+ Reply to Thread
Results 1 to 5 of 5
-
Last edited by Rudyard; 12th Sep 2011 at 19:27. Reason: typo
-
You can use nested conditional , or lookup table
Look at some of the examples with grades (example 3 & 4)
http://office.microsoft.com/en-us/excel-help/if-HP005209118.aspx -
great, a quick browse has exactly what im after, will give it a shot. Much appreciated.
-
basically, you have to build recusive if/then in excel. there is no block-if/then unless you go the vba route in a module, but that can be a problem if security levels are set on each computer and/or allow certain functions related to macros are turned on/off. anyway. personally, i prefer to be safe and break out complex if/then type formulas into more than one cell. anyway. you formula is too complex and has should be split into two. change the values in column F1 to see the different results.IF F1<50=FAIL, F2>50 but <60=PASS, F2>60 but <70=CREDIT, F2>70=DISTINCTION
edit: oops, i seem to have missed a few conditions. oh well..i'll leave that up to you to figure out...hint hint might need to split.
-
Thanks for all your help, the winning formula was:
=IF(L3>82.5,"DISTINCTION",IF(L3>69.5,"CREDIT", IF(L3>49.5,"PASS",IF(L3>40,"CHECK","FAIL"))))
Similar Threads
-
Formula for NTSC to PAL lip-sync
By macnab in forum Video ConversionReplies: 4Last Post: 11th Aug 2010, 11:16 -
What is the mathematical formula to figure out the right resolution when resizing?
By Newtype in forum Video ConversionReplies: 10Last Post: 8th Feb 2010, 18:11 -
How to activate macro's in Excel 2007 with a spreadsheet from Excel 97
By blinky88 in forum ComputerReplies: 3Last Post: 11th Feb 2009, 12:21 -
Formula for encoding flvs
By stembridge in forum ffmpegX general discussionReplies: 5Last Post: 12th Sep 2008, 19:23 -
Math: Equation / Formula questions
By vhelp in forum ProgrammingReplies: 7Last Post: 27th Jul 2008, 17:06



Quote