I have an excel sheet in which a column has cells with 2 consecutive line breaks and I would like to replace them with a single line break.
I've actually been able to achieve that using a VBA function:
Function ClearLineBreaks(cell As Range) As String
ClearLineBreaks = Replace(cell.Value, vbLf & vbLf, vbLf)
End Function
But I was wondering if it would be possible to achieve the same result using only Excel functions.