I would like to get a string up to the newline. For this I am trying to use InStr(text, vbCrLf), but the function returns 0. MsgBox displays the text considering the line jump. Why it returns 0?
' VBA
InStr(text, "/r") ' returns 0
InStr(text, "/n") ' returns 0
InStr(text, vbCrLf) ' returns 0