Skip to content
Dropfile

TEXTJOIN Function

Joins text from multiple cells with a delimiter between each value. Can optionally skip empty cells. Superior to CONCATENATE for most use cases.

ExcelGoogle Sheets

Sintaxis

TEXTJOIN(delimiter, ignore_empty, text1, [text2], ...)

Parámetros

ParámetroDescripción
delimiterThe separator between each text value (e.g., ", " or " - ").
ignore_emptyTRUE to skip empty cells, FALSE to include them.
text1The first text value or range.
textN(opcional)Additional text values or ranges.

Ejemplos

Join a range with commas

=TEXTJOIN(", ", TRUE, A2:A10)

Resultado: Apple, Banana, Cherry

Create a file path

=TEXTJOIN("/", FALSE, "Users", A1, "Documents")

Resultado: Users/john/Documents

Consejos y buenas prácticas

Fórmulas relacionadas

¿Necesitas otra fórmula?

Describe lo que necesitas en texto simple y nuestra IA generará la fórmula por ti.

Probar el Generador de fórmulas