How to avoid/bypass/ignore a #N/A #NV Error in Google Sheets?

泄露秘密 提交于 2019-12-11 16:34:31

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!