I have two sheets, one is titled "Test Scenarios", it's a sheet that contains steps to complete a test scenario, the other is titled "Test Issues", it collects testing issues submitted via form URL. When a test scenario fails, the user selects "failed" from a multi select box which causes a form URL to display. The URL contains the formula below to gather several pieces of information. See URL Form Image 1 attached.
If the description has a line break, i.e., someone has pressed ctrl+enter to start a new line (see Description Image 1 attached) Smartsheet will not read past the break. I understand that this is because Smartsheet treats this as a line break and stops. Is there a way to edit the formula to collect the entire description even if it contains a line break?
FORM URL:
=IF([TestScenario Status]@row ="Failed", SUBSTITUTE("https://app.smartsheet.com/b/form/2ff5a32177d64308a5a6dd32ec7d206d?" +"Test Scenario=" + [Test Scenario]@row , " ", "%20") +SUBSTITUTE("&Functional%20Area=" + [FunctionalArea]@row , "", "%20") +SUBSTITUTE("&Test%20Scenario=" + [TestScenario]@row , "", "%20") +SUBSTITUTE("&Tester%20Name=" + Assignee@row , " ", "%20") +SUBSTITUTE("&Scenario%20ID=" + [ScenarioID]@row , "", "%20") +SUBSTITUTE("&Description=" + Description@row , " ", "%20"))