How to add new line in google form confirmation message


Confirmation messages are displayed after submitting the form / questions by the receiver. To add new line in the confirmation message, run the below script in the script editor.


function addLineBreaks()
{
  var form = FormApp.getActiveForm(); 
  
  var title = "Thanks for your submission. We will get back to you sooon";
  form.setConfirmationMessagetitle.split(". ").join("\n"));
  
}

For reference :






Comments

Popular posts from this blog

how to add new line in google form questions | Fix for next line issue in google form questions

How to add new line in dropdown type question in google forms