Adding text only if I choose an option

I am a member of a networking group and provide them with a coupon for a reduction on my time coaching pricing. I would like to be able to choose Group then Y/N and have it drop in the coupon code and description if they are a member, but not add the text if they aren't a member.

Can you suggest how I would do this? Would it be the if/else command?

Hi @CaptainTime,

I have created a snippet for illustration doing the same using if-else command. Let me know if you have any further questions.

Group: {formmenu: Group A; Group B; Group C; name=group}
Are they a member: {formmenu: Yes; No; name=member}

{if: member = "Yes"}
Coupon Code: {if: group = "Group A"}Coupon A{elseif: group = "Group B"}Coupon B{elseif: group = "Group C"}Coupon C{endif}
Description: As a member of {=group}, you are entitled to a special discount on my coaching services.
{endif}