问题
I need help creating a formula! I want the formula if it contains a #NV error, to ignore the #NV error. Instead, a value should be output, even if there is a #NV error. Do you have any idea how this could work? When a wrong value is inserted in to the Assignment list, there is an #NV error. How can I ignore it?
=ARRAY_CONSTRAIN(ARRAYFORMULA(SUMME(WENN(ODER((WENN($B$2="dontcare",1,(Assignment!$E$3:$E$577=$B$2))),(WENN($B$3="dontcare",1,(Assignment!$E$3:$E$577=$B$3))),(WENN($B$4="dontcare",1,(Assignment!$E$3:$E$577=$B$4))),(WENN($B$5="dontcare",1,(Assignment!$E$3:$E$577=$B$5))),(WENN($B$6="dontcare",1,(Assignment!$E$3:$E$577=$B$6))))*(WENN($B$7="dontcare",1,(Assignment!$F$3:$F$577=$B$7)))*(WENN($B$8="dontcare",1,(Assignment!$B$3:$F$577=$B$8))),(Assignment!G$3:G$577)))), 1, 1)
回答1:
wrap your formula in IFERROR
IFERROR(your-formula-here; "value if error here")
来源:https://stackoverflow.com/questions/58762808/how-to-avoid-bypass-ignore-a-n-a-nv-error-in-google-sheets