Absolute Table References

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:
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!
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
I think you mean:

=IF(COUNTIF([Property],[@Property])>1,IF(COUNTIF(INDEX([Property],1):[@Property],[@Property])=1,"x","xx"),"")
 
Last edited:
Upvote 0
I think you mean:

=IF(COUNTIF([Property],[@Property])>1,IF(COUNTIF(INDEX([Property],1):[@Property],[@Property])=1,"x","xx"),"")

Rory! Thank you so much; that worked! Interesting that we use the INDEX function for the table; why do we need to do that?

Thank you again for all of your help!
 
Upvote 0
There isn't a symbol for locking the row number in structured references, so you need to use something like INDEX.
 
Upvote 0

Forum statistics

Threads
1,223,896
Messages
6,175,262
Members
452,627
Latest member
KitkatToby

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top