here i want to take the sum of market values when multiple conditions are met.
here are the conditions:
CRS_4 <>"cash" or "cash fund"
and RATING_AVAIL = "AA+", "AA", or "AA-"
here is the formula i've come up with, but it's giving me a 0 which is not correct.
MVAI is an array i have for market value
=SUM(IF((CRS_4<>"CASH")*(CRS_4<>"CASH FUND"),IF(RATING_AVAIL="AA+",IF(RATING_AVAIL="AA",IF(RATING_AVAIL="AA-",MVAI,0),0))))
Thank you!
here are the conditions:
CRS_4 <>"cash" or "cash fund"
and RATING_AVAIL = "AA+", "AA", or "AA-"
here is the formula i've come up with, but it's giving me a 0 which is not correct.
MVAI is an array i have for market value
=SUM(IF((CRS_4<>"CASH")*(CRS_4<>"CASH FUND"),IF(RATING_AVAIL="AA+",IF(RATING_AVAIL="AA",IF(RATING_AVAIL="AA-",MVAI,0),0))))
Thank you!