Dropdown excluding choice text

Hi Guys,

New user here I'm hoping someone can help, Im setting up some automated canned responses where there are multiple choices, I'm using the dropdown function with an If/else to import snippets based on on the choice from the dropdown,

The problem Im having is that the text from the dropdown choice is being included above the imported snippet and I can't seem to find a way to exclude this, would there be a better way to produce this?

Thank you in advance for any help, I've attached an example of the setup i'm using below

Good {if: {time:H}<12}morning,{else}afternoon,{endif}

{formmenu: Choice A; default=Choice B; Choice C; name=Test}
{if: Test=="Choice A"}Import Snippet A{endif}{if: Test=="Choice B"}Import Snippet B{endif}{if: Test=="Choice C"}Import Snippet C{endif}

Kind Regards

Hi, and welcome to the forum! :slight_smile:

You can use the {note} command for this. It allows you to exclude parts of your snippet from insertion:

You would want something like:

Good {if: {time:H}<12}morning,{else}afternoon,{endif}

{note}{formmenu: Choice A; default=Choice B; Choice C; name=Test}
{endnote}{if: Test=="Choice A"}Import Snippet A{endif}{if: Test=="Choice B"}Import Snippet B{endif}{if: Test=="Choice C"}Import Snippet C{endif}

Kind Regards

1 Like

Perfect! Thanks for your help Scott