Deleting a table row based on a variable

Is there a way to delete a row in a table based on a variable?
For example if option A is chosen I want to delete the entire row that has table value 2 in the table.

{formmenu: Choice A; default=Choice B; Choice C; name=Options}

{if: options = "A"}
Table Value 1
Table Value 2
Table Value 3
{endif}

Hi @Geoff_Kraabel
Do you mean something like this?

{formmenu: Choice A; default=Choice B; Choice C; name=options}

OptionValueDetails
X1 
Y3 
{if: options<>"Choice A"}Z2{endif}