Hi,
Say I have cells like this -
Paragraph C1 - C33 of the Document Blah blah blah blah |
Can I parse out the first like of the paragraph so I only get :
Paragraph C1 - C33 of the Document |
Solved! Go to Solution.
@wonka1234 if it's always just the first line then you'll be able to use a Formula tool with this expression:
REGEX_Replace([Input], '([^\n]+)\n.*', '$1')
Which just isolates everything before the first instance of a line break.
@wonka1234 One way of doing this