Suppose there is a column with values
Website
Abc
Abc
Abc
Xyz
Xyz
Pqr
Uvw
Now i want to count how many times Abc or other names is in the column and write the count corresponding in the next column .
Website      Total
    Abc            3
    Abc            3
    Abc            3
    Xyz            2 
    Xyz            2
    Pqr            1
    Uvw            1
Can a function be created Without manually counting each website?
 
     
     
    