Hello!I'm trying to remove a column based on whether or not a checkbox
is selected. I can't seem to select an entire column, only a row, and I
can't make cells "hidden", so I've decided to try to reduce the width if
I need it hidden. My script under the change event
is:if($=="1")thenTable1.Row1.Cell10.w="0.4898in"elseTable1.Row1.Cell10.w="0.001in"endifMy
initial setting for the cell width is 0.001 as the checkbox is "0"Seems
a little hokey and there must be a better way. Even the above is not
wo...