Oct 29 2023 11:18 PM
Hi all,
I wonder if we can automatically add a hyphen and running number
I have a lot of data
Column A - Starting Code - Default "DFP"
Column B - Ending Code - These are numbers and some of them are duplicates
In Column C - I am going to combine A + B = But because B has duplicates the results in C will also end up having duplicates
I want another column Column D - to check duplicates and add a hyphen and running number (-1, -2, -3) if duplicates are found. Is it possible to do this in Excel?
Oct 30 2023 12:42 AM
Solution=IF(COUNTIF($C$2:$C$7,C2)=1,"",C2&"-"&COUNTIF($C$2:C2,C2))
This formula returns the intended result in my sheet.
Nov 05 2023 08:26 PM