I'm having issues with an array formula:
=IFERROR(SUM(IF(('data entry'!$G$37:$G$92='NEW avail-capa overview'!$Z4)*('data entry'!$H$37:$H$92='NEW avail-capa overview'!AA$3),'data entry'!$I$37:$I$92,"")),"")
Assume:
Z4 = Product 1
AA3 = CC1
If these values are both found, it returns the correct value/total I need. my problem arises when the values searched for aren't in the arrays. according to the coding, it should return "". currently it is returning a value of 0.
if i change the formula to:
=IFERROR(SUM(IF(('data entry'!$G$37:$G$92='NEW avail-capa overview'!$Z4)*('data entry'!$H$37:$H$92='NEW avail-capa overview'!AA$3),'data entry'!$I$37:$I$92,"none")),"")
or
=IFERROR(SUM(IF(('data entry'!$G$37:$G$92='NEW avail-capa overview'!$Z4)*('data entry'!$H$37:$H$92='NEW avail-capa overview'!AA$3),'data entry'!$I$37:$I$92,"1")),"")
it still returns a value of 0 not the 'none' or '1' values I'd expect.
if I change the code to:
=IFERROR(SUM(IF(('data entry'!$G$37:$G$92='NEW avail-capa overview'!$Z4)*('data entry'!$H$37:$H$92='NEW avail-capa overview'!AA$3),'data entry'!$I$37:$I$92,1)),"")
I get a completely random seeming value. i.e. not 1 and not 0 as expected.
any suggestions would be appreciated.
r/
SUPPO
Bookmarks