I thought this was going to be Very simple:
=COUNTIF(Foo[Bar],$A1)>0
applying this to the entire column I thought would highlight any cell that is found in the Column Bar of table Foo. But excel is telling me my formula contains an error, even though when I paste it into a cell it does give me a correct value of True/False.
I thought maybe for some reason I needed to complicate it for excel so i tried:
=COUNTIF(Foo[Bar],$A1) + CountIf(A1:A10000, $A1>1
Not sure why i tried it but I figured why not. Regardless is did not work.
I then went on to blame the Range (Foo[Bar]) and tried:
=COUNTIF($T$2:$T$1048576,$A1)>0
It Worked, the issue here is that that table's row count can change from 1 to anything depending on out days progress. I'd prefer not to just use 50000 as a number because it might not always be good enough and most of the time over kill. and causes refreshed to take for ever when Column A is closing in on 1 million records some days and the table is at 100,000.
So, how can I dynamically conditionally format my column to reflect table?