Complete the formula to return 0 if A1 has an error.
=IFERROR(A1, [1])The IFERROR function returns the value of A1 if no error occurs. If there is an error, it returns the value you provide, here 0.
Complete the formula to return "No Data" if B2 has an #N/A error.
=IFNA(B2, [1])The IFNA function returns the value of B2 if it is not an #N/A error. If it is #N/A, it returns the text "No Data".
Fix the error in the formula to return "Missing" if C3 has an #N/A error.
=IFNA(C3 [1] "Missing")
The IFNA function requires a comma to separate the value and the value_if_na arguments.
Fill both blanks to return "Error" if D4 has any error, else return D4.
=IFERROR([1], [2])
The IFERROR function returns the value of D4 if no error occurs. If there is an error, it returns the text "Error".
Fill all three blanks to return "No Value" if E5 has #N/A error, else return E5 if no error, else return 0.
=IFERROR(IFNA([1], [2]), [3])
This formula first checks if E5 has an #N/A error using IFNA. If yes, it returns "No Value". If no #N/A error, it returns E5. Then IFERROR catches any other errors and returns 0.