I am importing CSV file with multiple lines where the end of the line is a vbCrLf.
The problem is that sometimes I am getting into the fields with the value vbLf.
I would just like to replace the vbLf.
When i use the code below replaces the vbLf and vbCrLf as indicating the end of the line:
txt = txt.Replace ( vbLf , "")
How do I replace only the vbLf?