I have ColumnA with 3 values. When “Value1” is selected then ColumnB is shown and requires user input.
I have set the “Reset on edit” property on Column B and insert an Initial Value of:
IF([ColumnA] = "Value1",
[_THIS],
""
)
The intent is to reset ColumnB if ColumnA is changed to a value other than “Value1”.
When editing, the first time ColumnA is switched from “Value1” to something else, ColumnB is reset as expected.
But while in the same editing session if I again set ColumnA to “Value1”, choose a value in ColumnB then switch ColumnA once again to a value other than “Value1” - ColumnB is NOT reset again. See image
I have tried removing the Show_If expression and using a targeted "Reset on edit: expression shown above as well as just setting the “Reset ion edit” w/o an expression
…I get the same behavior.
The issue is if a user does this activity, it leaves an unexpected value in the field that could impact downstream processing. Yes, I could implement an action on save but then I’d need to every time this is potentially possible - my particular app has several of these.
The bright side is the users are not going to flip back and forth very often at all but still…!!!
And I don’t seem to recall this being a problem in the past…so maybe it’s a new issue???
Anyone else experienced this problem and figured out a work around in the column configurations?
