Mostrar una etiqueta cuando una celda está vacía; de lo contrario, mantener el valor.
Copiar esta fórmula
=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)→—Reemplaza las celdas vacías con un guion.
Capturar también errores de fórmula
=IFERROR(A2, "Missing")Devuelve el valor alternativo cuando A2 es un error.
ISBLANK is TRUE only for truly empty cells; ="" also treats zero-length strings (from formulas) as blank. Pick based on your data.
¿Necesitas una fórmula para tus propios datos?
Describe lo que quieres en lenguaje natural y deja que ExcelGPT escriba, explique y verifique la fórmula; gratis para empezar, sin complementos.