Muthukrishnan V

Active Member
Joined
May 29, 2008
Messages
280
Office Version
  1. 365
Platform
  1. Windows
Excel 2007



Reg: Marksheet formula


Columns B to J are in numerical format containing marks
obtained.



Helper Cell K1 contains 50 in numerical format, minimum
required marks for a "Pass".


Columns B,C & D are category 1 and student should pass at
least 2 subjects (out of 3)


Columns E,F & G are category 2 and student should pass at
least in 1 subject (out of 3)



Columns H,I & J are category 3 and student should pass in all
the 3 subjects (out of 3)


So, a student is required to pass a minimum of 6 out of 9
subjects (2 in B:D; 1 in E:G; and 3 in H:J) to qualify.



Kindly advise me a formula to get the resultant output
"Qualified" or else "Not Qualified".


Thanking you,
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Maybe this

Code:
=IF(AND(COUNTIF(B1:D1,">="&K1)>1,COUNTIF(E1:G1,">="&K1)>=1,COUNTIF(H1:J1,">="&K1)>2),"Qualified","fail")
 
Upvote 0
Sir,

I am sorry and apologise for my very late response. Kindly excuse me.

The above code returns "too many aruguments for this function". Please advise me I use MS Excel 2007
 
Upvote 0
Works fine for me !
Did you copy the formula provided OR retype it ??
 
Upvote 0
Can you post a SMALL sample of your data ?
 
Upvote 0
Try simply doing a copy and paste of the formula....why retype it ???
 
Upvote 0

Forum statistics

Threads
1,214,973
Messages
6,122,534
Members
449,088
Latest member
RandomExceller01

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