Conditional Formatting Question

Does anyone know if it is possible to have a dropdown where if one choice is selected then something else will be added to a different part of the snippet? Ex. {choice A, choice B, choice C} If choice A, then X. If choice B, then Y. If choice C, then Z. Hopefully the way I have explained this makes sense. Thanks.

Hi @delegatetopass, welcome to the forum!
Do you mean something like this?

{formmenu: Choice A; Choice B; Choice C; name=choice}
{if:choice=="Choice A"}X{endif}{if:choice=="Choice B"}Y{endif}{if:choice=="Choice C"}Z{endif}

Yes, that is exactly what I needed! Thanks!