Hello once again to all you Excel gurus. I’m back with another challenge (at least it’s a challenge for me). I have the following formula:
=SUM(IF(A3:A800=A1,IF(B3:B800>=B1,IF(B3:B800<=C1,IF(NOT(ISERROR(C3:C800)),C3:C800,0),0),0)))
which works fine. It returns a value based on the conditions in the formula.
The problem is that I need to actually add not ALL the cells in C3:C800 based on the conditions; instead I need to add the upper quartile (top 25%) of those cells. And to complicate it a little further, some of the cells in C3:C800 contain #VALUE errors, while others contain "NM", while others contain values, which is why the IF(NOT(ISERROR… construction.
I would have posted a sample, but I can't seem to get the file size below 100K with the formula in it.
I feel like I'm so close but I just can't get it….
Thanks in advance, once again…