It appears there is an embedded carriage return or line feed even after removing the Booking Ref:
You can use the Replace() function to remove it/them
Replace(Replace(Replace(Mid([RawData], InStr([RawData], "Booking Ref:") + 12, 12) AS BookingRef,CHR(9),""),CHR(10),""),CHR(13),"")
You may...