excel - Conditional Format cell if it's value is found in a Column of a Table -


i thought going simple:

=countif(foo[bar],$a1)>0 

applying entire column thought highlight cell found in column bar of table foo. excel telling me formula contains error, though when paste cell give me correct value of true/false.

i thought maybe reason needed complicate excel tried:

    =countif(foo[bar],$a1) + countif(a1:a10000, $a1>1 

not sure why tried figured why not. regardless did not work.

i went on blame range (foo[bar]) , tried:

=countif($t$2:$t$1048576,$a1)>0 

it worked, issue here that table's row count can change 1 depending on out days progress. i'd prefer not use 50000 number because might not enough , of time on kill. , causes refreshed take ever when column closing in on 1 million records days , table @ 100,000.

so, how can dynamically conditionally format column reflect table?

try

=countif(indirect("foo[bar]"),$a1)>0 

Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -