I try to keep my formulas as simple as possible. Here is my current formula for finding a match in two columns:
{=SUM(IF(F$24:F$43=F44,$D$24:$D$43))}
The issue with this is that it sums instead of just reporting the value. Which is a problem if the results are not numerical.
I tried this:
{(F$24:F$43=F44)*$D$24:$D$43)}
But this returns an array of zeros and my match....so it is close to what I want. But I need a VBA function or other simple method to take this large array and just return the single none zero number
Thanks!
{=SUM(IF(F$24:F$43=F44,$D$24:$D$43))}
The issue with this is that it sums instead of just reporting the value. Which is a problem if the results are not numerical.
I tried this:
{(F$24:F$43=F44)*$D$24:$D$43)}
But this returns an array of zeros and my match....so it is close to what I want. But I need a VBA function or other simple method to take this large array and just return the single none zero number
Thanks!