Forum Discussion
bvelke
May 22, 2019Brass Contributor
Pivot table lookup?
How can I find the highest value in Column A where the cell in Column B in the same row is not blank?
Thanks for any help?
2 Replies
- TwifooSilver ContributorThese are the alternative non-array formulas:
=MAX(INDEX(A:A*(B:B<>""),0))
=SUMPRODUCT(MAX(A:A*(B:B<>"")))
=AGGREGATE(14,4,A:A*(B:B<>""),1)
I prefer the last. What about you?