Hello,
I need to include in my output a flag of all the duplicate records of one column, so the data in the other columns can be reviewed.
I know I can use the Multi row Formula tool with the formula below, but that will mark one of the duplicate records as 1 and the other as 0 - I need both to be marked as 1.
IF [Value = [Row-1:Value] THEN 1 ELSE 0
Example Current:
Value Name DOB
123456789 Smith 1/1/1980
123456789 Smith 1/12/1980
568790561 Jones 3/8/1949
Desired output:
Value Name DOB Flag
123456789 Smith 1/1/1980 1
123456789 Smith 1/12/1980 1
568790561 Jones 3/8/1949 0
How can I use this tool to achieve this?
Thank you,
Kim