Sometimes in automations or on a button I want the option of
IF {Condition} THEN Addrow() ELSE **DoNothing()**
There are workaround like ResetControlValue([The Do Nothing Workaround Checkbox]).
But this is messy. It seems like it should be a simple quality of life feature for us doc editors and I would love to have it to clean up some of my more complex formulas.
Longer Example’
I find this most necessary inside buttons and automations where several steps all happen at once based on complex rules. For example:
RunActions(
IF({Condition}, Addrow(), **DoNothing()**),
IF({Condition}, ModifyRow(), **DoNothing()**),
IF({Condition}, SetControlValue(), **DoNothing()**),
IF({Condition}, Notfiy(), **DoNothing()**)
)