Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
total average result RANK
544 54.4 fail FAIL 593 59.3 pass 10 637 63.7 pass 6 611 61.1 fail FAIL 627 62.7 fail FAIL 632 63.2 pass 7 686 68.6 pass 2 653 65.3 pass 4 653 65.3 pass 4 713 71.3 pass 1 654 65.4 pass 3 i need rank for pass student's in sequence ...any formula .........plzzzzz the problem is my formula give's the value 1,2,3,4,4,6,7,and 10 but what i need is 8 in place of 10 ......plz solve...any one? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() http://www.cpearson.com/excel/Rank.aspx -- Don Guillett Microsoft MVP Excel SalesAid Software "shailen6882" wrote in message ... total average result RANK 544 54.4 fail FAIL 593 59.3 pass 10 637 63.7 pass 6 611 61.1 fail FAIL 627 62.7 fail FAIL 632 63.2 pass 7 686 68.6 pass 2 653 65.3 pass 4 653 65.3 pass 4 713 71.3 pass 1 654 65.4 pass 3 i need rank for pass student's in sequence ...any formula .........plzzzzz the problem is my formula give's the value 1,2,3,4,4,6,7,and 10 but what i need is 8 in place of 10 ......plz solve...any one? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Mar 25, 7:52*pm, "Don Guillett" wrote:
http://www.cpearson.com/excel/Rank.aspx -- Don Guillett Microsoft MVP Excel SalesAid Software "shailen6882" wrote in message ... total average result RANK 544 54.4 fail FAIL 593 59.3 pass 10 637 63.7 pass 6 611 61.1 fail FAIL 627 62.7 fail FAIL 632 63.2 pass 7 686 68.6 pass 2 653 65.3 pass 4 653 65.3 pass 4 713 71.3 pass 1 654 65.4 pass 3 i need rank for pass student's in sequence ...any formula .........plzzzzz the problem is my formula give's the value 1,2,3,4,4,6,7,and 10 but what i need is 8 in place of 10 ......plz solve...any one?- Hide quoted text - - Show quoted text - thanx,but it dosen't help me to solve my problem i go through this page as well...thanx again if u have other pages plz inform me..thanx |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
this may get you close. it should rank the fails after the passes.
=1+SUMPRODUCT(($C$2:$C$12="pass")*($B$2:$B$12B2)) -- Gary Keramidas Excel 2003 "shailen6882" wrote in message ... total average result RANK 544 54.4 fail FAIL 593 59.3 pass 10 637 63.7 pass 6 611 61.1 fail FAIL 627 62.7 fail FAIL 632 63.2 pass 7 686 68.6 pass 2 653 65.3 pass 4 653 65.3 pass 4 713 71.3 pass 1 654 65.4 pass 3 i need rank for pass student's in sequence ...any formula .........plzzzzz the problem is my formula give's the value 1,2,3,4,4,6,7,and 10 but what i need is 8 in place of 10 ......plz solve...any one? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
Taking advantage of Gary's formula, I just added the "IF(Pass/Fail)" the OP wants. Hope you don't mind Gary. Regards John =IF(C2:C12="pass",1+SUMPRODUCT(($C$2:$C$12="pass") *($B$2:$B$12B2)),"Fail") "Gary Keramidas" wrote in message ... this may get you close. it should rank the fails after the passes. =1+SUMPRODUCT(($C$2:$C$12="pass")*($B$2:$B$12B2)) -- Gary Keramidas Excel 2003 "shailen6882" wrote in message ... total average result RANK 544 54.4 fail FAIL 593 59.3 pass 10 637 63.7 pass 6 611 61.1 fail FAIL 627 62.7 fail FAIL 632 63.2 pass 7 686 68.6 pass 2 653 65.3 pass 4 653 65.3 pass 4 713 71.3 pass 1 654 65.4 pass 3 i need rank for pass student's in sequence ...any formula .........plzzzzz the problem is my formula give's the value 1,2,3,4,4,6,7,and 10 but what i need is 8 in place of 10 ......plz solve...any one? |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
don't mind, i just put it together quickly without much testing. not sure it
will do what the op wants or not. -- Gary Keramidas Excel 2003 "John" wrote in message ... Hi Taking advantage of Gary's formula, I just added the "IF(Pass/Fail)" the OP wants. Hope you don't mind Gary. Regards John =IF(C2:C12="pass",1+SUMPRODUCT(($C$2:$C$12="pass") *($B$2:$B$12B2)),"Fail") "Gary Keramidas" wrote in message ... this may get you close. it should rank the fails after the passes. =1+SUMPRODUCT(($C$2:$C$12="pass")*($B$2:$B$12B2)) -- Gary Keramidas Excel 2003 "shailen6882" wrote in message ... total average result RANK 544 54.4 fail FAIL 593 59.3 pass 10 637 63.7 pass 6 611 61.1 fail FAIL 627 62.7 fail FAIL 632 63.2 pass 7 686 68.6 pass 2 653 65.3 pass 4 653 65.3 pass 4 713 71.3 pass 1 654 65.4 pass 3 i need rank for pass student's in sequence ...any formula .........plzzzzz the problem is my formula give's the value 1,2,3,4,4,6,7,and 10 but what i need is 8 in place of 10 ......plz solve...any one? |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Lets hope he does reply with a answer. To many just don't acknowledge.
John "Gary Keramidas" wrote in message ... don't mind, i just put it together quickly without much testing. not sure it will do what the op wants or not. -- Gary Keramidas Excel 2003 "John" wrote in message ... Hi Taking advantage of Gary's formula, I just added the "IF(Pass/Fail)" the OP wants. Hope you don't mind Gary. Regards John =IF(C2:C12="pass",1+SUMPRODUCT(($C$2:$C$12="pass") *($B$2:$B$12B2)),"Fail") "Gary Keramidas" wrote in message ... this may get you close. it should rank the fails after the passes. =1+SUMPRODUCT(($C$2:$C$12="pass")*($B$2:$B$12B2)) -- Gary Keramidas Excel 2003 "shailen6882" wrote in message ... total average result RANK 544 54.4 fail FAIL 593 59.3 pass 10 637 63.7 pass 6 611 61.1 fail FAIL 627 62.7 fail FAIL 632 63.2 pass 7 686 68.6 pass 2 653 65.3 pass 4 653 65.3 pass 4 713 71.3 pass 1 654 65.4 pass 3 i need rank for pass student's in sequence ...any formula .........plzzzzz the problem is my formula give's the value 1,2,3,4,4,6,7,and 10 but what i need is 8 in place of 10 ......plz solve...any one? |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Mar 25, 11:44*pm, "John" wrote:
Lets hope he does reply with a answer. To many just don't acknowledge. John "Gary Keramidas" wrote in message ... don't mind, i just put it together quickly without much testing. not sure it will do what the op wants or not. -- Gary Keramidas Excel 2003 "John" wrote in message ... Hi Taking advantage of Gary's formula, I just added the "IF(Pass/Fail)" the OP wants. Hope you don't mind Gary. Regards John =IF(C2:C12="pass",1+SUMPRODUCT(($C$2:$C$12="pass") *($B$2:$B$12B2)),"Fail") "Gary Keramidas" wrote in message .. . this may get you close. it should rank the fails after the passes. =1+SUMPRODUCT(($C$2:$C$12="pass")*($B$2:$B$12B2)) -- Gary Keramidas Excel 2003 "shailen6882" wrote in message .... total average result RANK 544 54.4 fail FAIL 593 59.3 pass 10 637 63.7 pass 6 611 61.1 fail FAIL 627 62.7 fail FAIL 632 63.2 pass 7 686 68.6 pass 2 653 65.3 pass 4 653 65.3 pass 4 713 71.3 pass 1 654 65.4 pass 3 i need rank for pass student's in sequence ...any formula .........plzzzzz the problem is my formula give's the value 1,2,3,4,4,6,7,and 10 but what i need is 8 in place of 10 ......plz solve...any one?- Hide quoted text - - Show quoted text - thanks boss u have brilliant brain n i got what i want .......thanx again ........thanx again ............ |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Mar 25, 11:20*pm, "Gary Keramidas" wrote:
don't mind, i just put it together quickly without much testing. not sure it will do what the op wants or not. -- Gary Keramidas Excel 2003 "John" wrote in message ... Hi Taking advantage of Gary's formula, I just added the "IF(Pass/Fail)" the OP wants. Hope you don't mind Gary. Regards John =IF(C2:C12="pass",1+SUMPRODUCT(($C$2:$C$12="pass") *($B$2:$B$12B2)),"Fail") "Gary Keramidas" wrote in message ... this may get you close. it should rank the fails after the passes. =1+SUMPRODUCT(($C$2:$C$12="pass")*($B$2:$B$12B2)) -- Gary Keramidas Excel 2003 "shailen6882" wrote in message .... total average result RANK 544 54.4 fail FAIL 593 59.3 pass 10 637 63.7 pass 6 611 61.1 fail FAIL 627 62.7 fail FAIL 632 63.2 pass 7 686 68.6 pass 2 653 65.3 pass 4 653 65.3 pass 4 713 71.3 pass 1 654 65.4 pass 3 i need rank for pass student's in sequence ...any formula .........plzzzzz the problem is my formula give's the value 1,2,3,4,4,6,7,and 10 but what i need is 8 in place of 10 ......plz solve...any one?- Hide quoted text - - Show quoted text - thanx ................i got what i want ...........a many many thanx too u .......... |
#10
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You're welcome
John "shailen6882" wrote in message ... On Mar 25, 11:44 pm, "John" wrote: Lets hope he does reply with a answer. To many just don't acknowledge. John "Gary Keramidas" wrote in message ... don't mind, i just put it together quickly without much testing. not sure it will do what the op wants or not. -- Gary Keramidas Excel 2003 "John" wrote in message ... Hi Taking advantage of Gary's formula, I just added the "IF(Pass/Fail)" the OP wants. Hope you don't mind Gary. Regards John =IF(C2:C12="pass",1+SUMPRODUCT(($C$2:$C$12="pass") *($B$2:$B$12B2)),"Fail") "Gary Keramidas" wrote in message .. . this may get you close. it should rank the fails after the passes. =1+SUMPRODUCT(($C$2:$C$12="pass")*($B$2:$B$12B2)) -- Gary Keramidas Excel 2003 "shailen6882" wrote in message ... total average result RANK 544 54.4 fail FAIL 593 59.3 pass 10 637 63.7 pass 6 611 61.1 fail FAIL 627 62.7 fail FAIL 632 63.2 pass 7 686 68.6 pass 2 653 65.3 pass 4 653 65.3 pass 4 713 71.3 pass 1 654 65.4 pass 3 i need rank for pass student's in sequence ...any formula .........plzzzzz the problem is my formula give's the value 1,2,3,4,4,6,7,and 10 but what i need is 8 in place of 10 ......plz solve...any one?- Hide quoted text - - Show quoted text - thanks boss u have brilliant brain n i got what i want .......thanx again ........thanx again ............ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can you solve this???? | Excel Worksheet Functions | |||
CAN YOU SOLVE THIS!!!!!!! | Excel Worksheet Functions | |||
Solve for X and Y | Excel Worksheet Functions | |||
need help to solve this | Excel Discussion (Misc queries) | |||
y i cannot solve it ? | Excel Worksheet Functions |