EU
Why do you enter your formula as an array? It should work just fine as a normal formula
If I named a range "FERD", then you could use the following formula
=IF(COUNTIF(FERD,A1)=1,A1," "
There might be two reasons why your formula doesn't work with a named range. The countif function does not work on a noncontiguous selection. If your named range includes cells that aren't grouped together the COUNTIF will return a #VALUE! error
Another possibility is becuase the range changes when you copy the formula, but when you use a named ranged it doesn't. I assume you use this formula to find the first instance of each entry. When you use a named range the COUNTIF is always looking at the full data set. Therfer the COUNTIF will only equal 1 if the item being checked is the only instance of that item. If the letter A appeares more then once in the set, then the COUNTIF will be higher then one even for the first instance of A
Hope this helps
Good Luck
Mark Graesse
(e-mail address removed)
----- (e-mail address removed) wrote: ----
I often use the following array formula to extract unique entries from a list, but I cannot get it to work using a named range.
IF(COUNTIF($A$1:A1,A1)=1,A1," "
How would I construct this formula if the named range is in column A
Thanks
EU