Cat | Red | 8 |
Dog | Blue | 7 |
Pig | Red | 6 |
Elephant | Green | 5 |
Bear | Yellow | 2 |
Hi
Trying to Filter A2:C100 Where Column B = "Red" and SORT 3rd Column Ascending. If Red Doesn't appear I want to use the IfEmpty Argument
I've used =SORT(FILTER($A$2:$C$100,($B$2:$B$100 = "Red")),3,1) which works, however I need to edit in case there aren't any results
i.e. =SORT(FILTER($A$2:$C$100,($B$2:$B$100="Red"),"Nothing to See HERE!"))
But when I add the Sort part to this I get a #Value! Error if Red doesn't appear in Column B =SORT(FILTER($A$2:$C$100,($B$2:$B$100="Red"),"Nothing to See HERE!"),2,1)
Result should be
Pig | Red | 6 |
Cat | Red | 8 |