Duplicate numbering/excel
Solved
gazer
-
gazer -
gazer -
Hello,
here is my case
in column "A" I have a list of first names (thousands) that for some repeat from 1 to more than 10 times
is there a formula that says:
if there are for example 5 duplicates of the same first name in column "A" then it will display 5 in column "B"?
Thank you for your help
Configuration: Windows XP / Firefox 3.5.16
here is my case
in column "A" I have a list of first names (thousands) that for some repeat from 1 to more than 10 times
is there a formula that says:
if there are for example 5 duplicates of the same first name in column "A" then it will display 5 in column "B"?
Thank you for your help
Configuration: Windows XP / Firefox 3.5.16
6 answers
Hello
In column B, you put
=COUNTIF(A:A,A2) and drag it down the length of the field
Is it better?
--
Argitxu
In column B, you put
=COUNTIF(A:A,A2) and drag it down the length of the field
Is it better?
--
Argitxu
Hello
in column B, you have two options:
starting in B1 if the first is in A1
=COUNTIF($A$1:A1,A1)
by locking the first A1 with $A$1, it will give you the number of times the code A1 (and subsequent ones) appears in the field above the row, including the row where the formula is located
you can also write:
=IF(COUNTIF($A$1:A1,A1)=1,"","duplicate n° " & COUNTIF($A$1:A1,A1))
=COUNTIF(A:A,A1)
will give you the total number of values of A1 (and subsequent ones) in column A for each row
best regards
Let’s ask ourselves if we are the only ones who understand what is being explained?
in column B, you have two options:
starting in B1 if the first is in A1
=COUNTIF($A$1:A1,A1)
by locking the first A1 with $A$1, it will give you the number of times the code A1 (and subsequent ones) appears in the field above the row, including the row where the formula is located
you can also write:
=IF(COUNTIF($A$1:A1,A1)=1,"","duplicate n° " & COUNTIF($A$1:A1,A1))
=COUNTIF(A:A,A1)
will give you the total number of values of A1 (and subsequent ones) in column A for each row
best regards
Let’s ask ourselves if we are the only ones who understand what is being explained?
sum if
--
Fan of "Handbag" the croc from the animated series "the pirate family"
All roads lead to Drăgășani, RO !!!
--
Fan of "Handbag" the croc from the animated series "the pirate family"
All roads lead to Drăgășani, RO !!!