can anyone please help me???

LMF

Board Regular
Joined
Mar 16, 2002
Messages
73
I have tried methods that i know, but it doesn't work, so i hope there is an expert with this who can help me out with this bit!
ok, i got two column with these data:

Round Pos
1 1
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 Incompleted
1 Incompleted
1 Incompleted
2 1
2 2
2 3
2 4
2 5
2 6
2 7
2 8
2 Incompleted
2 Incompleted
2 Incompleted

I want the number of ppl with a Position (mean every1 except those who incompleted it). for round both round 1 and 2.

So the experted result is :

Round 1 10 ppl finished it
Round 2 8 ppl finished it

but of course i need to do this excel, can anyone pls teach me how i can do this please?

please help

:(
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
By the way, please note that the data in such list may not be in order, that mean some result of round 1 could be at the bottom of the result list and some of them could well be at the very top... and please note that i cannot sort this list.

is there anyway around this still?

pls help
 
Upvote 0
On 2002-04-13 14:01, LMF wrote:
I have tried methods that i know, but it doesn't work, so i hope there is an expert with this who can help me out with this bit!
ok, i got two column with these data:

Round Pos
1 1
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 Incompleted
1 Incompleted
1 Incompleted
2 1
2 2
2 3
2 4
2 5
2 6
2 7
2 8
2 Incompleted
2 Incompleted
2 Incompleted

I want the number of ppl with a Position (mean every1 except those who incompleted it). for round both round 1 and 2.

So the experted result is :

Round 1 10 ppl finished it
Round 2 8 ppl finished it

but of course i need to do this excel, can anyone pls teach me how i can do this please?

please help

/board/images/smiles/icon_frown.gif

=COUNTIF(A2:A50,1)-COUNTIF(B2:B50,"Incompleted)

=COUNTIF(A2:A50,2)-COUNTIF(B2:B50,"Incompleted)

where A2:A50 houses the round data and B2:B50 the pos data. Adjust to suit,
 
Upvote 0
thanks for helping, but
it doesn't seem to work because:

=COUNTIF(A2:A50,1) will be 13

-COUNTIF(B2:B50,"Incompleted) will be 6

but actually there are only 3 incompleted in round 1, so this won't work...

but pls think of any other solution about this please?
 
Upvote 0
assuming that the data you're working with is in a range named "Data" try the following:

in cell F1 enter "Round"
in cell F3 enter "1"
in cell G1 enter "Round"
in cell G3 enter "2"
# of people finished in round 1 is:
=DMAX(Data,"Pos",F1:F2)

# of people finished in round 2 is:
=DMAX(Data,"Pos",G1:G2)
 
Upvote 0
On 2002-04-13 14:09, LMF wrote:
thanks for helping, but
it doesn't seem to work because:

=COUNTIF(A2:A50,1) will be 13

-COUNTIF(B2:B50,"Incompleted) will be 6

but actually there are only 3 incompleted in round 1, so this won't work...

but pls think of any other solution about this please?

You're right. How disturbing!

=COUNTIF(A2:A50,1)-SUMPRODUCT((A2:A50=1)*(B2:B50="Incompleted"))

The same logic for Round value of 2.

Improved version: Since Yogi Anand provided a DCOUNT version, I'll take up just the SUMPRODUCT version, which should be shortened to:

SUMPRODUCT((A2:A50=1)*(B2:B50<>"Incompleted"))

Aladin
This message was edited by Aladin Akyurek on 2002-04-13 15:53
 
Upvote 0
yo, Ricky, the Dmax thing doesn't seem to work when the list is not in order...

as i said:

please note that the data in such list may not be in order, that mean some result of round 1 could be at the bottom of the result list and some of them could well be at the very top... and please note that i cannot sort this list.
 
Upvote 0
Aladin, your method makes it works.

thank you very much for your help!

:)

thanks to Ricky too :)
 
Upvote 0
Hi LMF:
Try the formula:

=COUNTIF(B1:B25,">=1")
this will give you 18 for those who have completed both rounds 1 and 2
HTH
 
Upvote 0

Forum statistics

Threads
1,214,415
Messages
6,119,375
Members
448,888
Latest member
Arle8907

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