I first tried to split answers (in multiple rows) with one RegEx tool, but it did not work. (not sure why)
So I used RegEx in Formula Tool to add a delimiter to use in Text To Columns Tool instead.
WorkflowTask1 FormulaMinutes = Round(DateTimeDiff([Date Submitted],[Time Started],"second") / 60, 0.1)Task2 Formula-1Question_And_Answer = REGEX_Replace([Question_and_Answer], "\nQ_", "|Q_")Task2 Formula-2Question_No = REGEX_Replace([Question_and_Answer], "\n.*", "")Answer = REGEX_Replace([Question_and_Answer], "^Q_\d+\n", "")Answer = IF IsEmpty([Answer]) THEN Null() ELSE [Answer] ENDIF