foolishpiano
New Member
- Joined
- Aug 19, 2016
- Messages
- 28
Hello everyone!
I am working with a table, which is new to me, and I'm trying to create absolute references to identify the first instance of a duplicate value. I found the formula to identify the first duplicate value from Exceljet found here: https://exceljet.net/formula/flag-first-duplicate-in-a-list, and I've been reviewing the absolute reference guide found here: https://www.excelcampus.com/tips/absolute-formula-references-excel-structured-table/, as well as the information from previous posts on this board (found here: https://www.mrexcel.com/forum/excel...ables-structured-references-absolute-ref.html and here: https://www.mrexcel.com/forum/excel-questions/455143-absolute-cell-reference-when-using-tables.html).
When using just a normal reference, the formula found on Exceljet works; for my purpose the formula is:
When I try to make absolute table references, my code is as follows, which returns blanks:
I would greatly appreciate all of your help with this. I'm sure I'm missing something simple.
Thank you all!
I am working with a table, which is new to me, and I'm trying to create absolute references to identify the first instance of a duplicate value. I found the formula to identify the first duplicate value from Exceljet found here: https://exceljet.net/formula/flag-first-duplicate-in-a-list, and I've been reviewing the absolute reference guide found here: https://www.excelcampus.com/tips/absolute-formula-references-excel-structured-table/, as well as the information from previous posts on this board (found here: https://www.mrexcel.com/forum/excel...ables-structured-references-absolute-ref.html and here: https://www.mrexcel.com/forum/excel-questions/455143-absolute-cell-reference-when-using-tables.html).
When using just a normal reference, the formula found on Exceljet works; for my purpose the formula is:
Code:
=IF(COUNTIF($AA$3:$AA$6880,AA3)>1,IF(COUNTIF($AA$3:AA3,AA3)=1,"x","xx"),"")
When I try to make absolute table references, my code is as follows, which returns blanks:
Code:
=IF(COUNTIF([@Property]:[@Property],[Property])>1,IF(COUNTIF([@Property]:[Property],[Property])=1,"x","xx"),"")
I would greatly appreciate all of your help with this. I'm sure I'm missing something simple.
Thank you all!