Show a label when a cell is empty, otherwise keep the value.
Copy this formula
=IF(A2="", "Missing", A2)Comparing a cell to "" (empty string) detects blanks. IF then returns your placeholder for empties and the original value otherwise — useful for clean reports and avoiding gaps.
=IF(B2="", "—", B2)→—Replaces empty cells with a dash.
Catch formula errors too
=IFERROR(A2, "Missing")Returns the fallback when A2 is an error.
ISBLANK is TRUE only for truly empty cells; ="" also treats zero-length strings (from formulas) as blank. Pick based on your data.
Need a formula for your own data?
Describe what you want in plain language and let ExcelGPT write, explain, and verify the formula — free to start, no plugin.