If the delimiter is a Line Feed, you can use the CHAR
function
=LEFT(A1, SEARCH(CHAR(10), A1)-1)
Alternatively, try CHAR(13)
which is Carriage Return
If the delimiter is a Line Feed, you can use the CHAR
function
=LEFT(A1, SEARCH(CHAR(10), A1)-1)
Alternatively, try CHAR(13)
which is Carriage Return