Forum Discussion
Ryan1982
Jun 14, 2023Copper Contributor
Multiple Values
I have a vertical column with about 1000 addresses' is there any way to show if any address is mentioned multiple times and number of times it appears?
OliverScheurich
Jun 15, 2023Gold Contributor
=LET( addr, UNIQUE( FILTER($A$1:$A$10000, COUNTIF(A1:$A$10000,A1:A10000)>1)
), cou, BYROW( addr, LAMBDA(x, COUNTIF(A1:$A$10000, x) ) ), HSTACK( addr, cou ) )
With Office 365 or Excel 2021 or Excel for the web an alternative could be this formula. In my sample file the addresses are in column A.