auto filter with error value

C

Cynthia

the auto filter doesn't work for the columns that contain "#value!".
I am trying to get the top 10 items in the column and like to ignore those
error values, i.e. "#value!".
Thanks!
 
D

Dave Peterson

Maybe you can use a helper column and a formula like:

=if(iserror(a2),"",a2)

Then apply your filter to that column.
 
Top