Need to find a value that matches two columns of criteria. Possible VLOOKUP

前端 未结 5 1700
不思量自难忘°
不思量自难忘° 2020-12-11 09:05

Update Below -- 6/4

I have two worksheets in excel. One is a list of donors with their check#/amount/ Donor ID ( \"donations\" worksheet) a

5条回答
  •  失恋的感觉
    2020-12-11 09:32

    I use the AVERAGEIFS function for getting a numeric value based on multiple criteria. If you are not confident that the criteria would only return one value, then you can wrap in a COUNTIFS statement.

    =IF(COUNTIFS($A$1:$A$10, crit1, $B$1:$B$10, crit2) = 1, AVERAGEIFS($C$1:C$10, $A$1:$A$10, crit1, $B$1:$B$10, crit2), #N/A)

    This only works for numeric values though.

提交回复
热议问题