auto filter with error value

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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!
 
Maybe you can use a helper column and a formula like:

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

Then apply your filter to that column.
 
Back
Top