Hi @beyondbecca ,
Thanks for reaching out- happy to help!
To make sure I am understanding correctly, you are:
- taking a form in Ninja Forms with a checkbox that when ticked
- is pushed over to Google Sheets where the ticked box reads “Checked”
- and you are looking to have these ticks from Ninja come over as ticks in your Google Form.
Is that accurate? Additionally, could you share a screenshot of your configuration so we can look into what options may work best?
Will be on the lookout for your response!
This would probably require either a formatter with the “replace” action, or some code that converts it and puts in an array.
Like @Liz_Roberts said, please give some more details with outputs, configuration, etc.
Cheers!
Thank you all for your willingness to help! I found a script online that I was able to edit and add to my template that replaces the words when the form is opened up. It was exactly what I needed.
This is the script:
function onOpen() {
var body = DocumentApp.getActiveDocument().getBody();
// Formatting the med hx form
body.replaceText("Unchecked", " ");
body.replaceText("Checked", "X");
body.replaceText("remove", " ");
}