Formula to autofill letters at end of cell

exceluser1233

New member
Joined
Oct 14, 2020
Messages
3
Reaction score
0
Points
0
Excel Version(s)
2013
I have the same number in multiple rows and I'm looking to add _A, _B, _C, etc. to the end of each cell to make them unique. Does anyone know what formula I could use for something like this? The formula I've tried is substitute(address(1,rows(a$1:A1),4),1,"") but all i end up with is "A" rather than "12345_A"
 
Try this

=A1&"_"&CHAR(64+ROW(A1))
 
That did it. Thanks Bob - saved me a ton of time.
 
Back
Top