Action Button Condition

need formula for condition of action button that will appear only when all quick edit fields are filled up. all fields are already required

Solved Solved
0 1 118
1 ACCEPTED SOLUTION

Presume you are trying this is detail view. If so, please try below. 

1) Please remove "required" on all those "Quick Edit" columns.

2) In the action, please create a condition something like 

AND(ISNOTBLANK([Phone]), ISNOTBLANK([Zip]),ISNOTBLANK([Customer Since]))

Where [Phone], [Zip] and [Customer Since] are quick edit fields. Please change/add/delete field names as applicable in your case. Basically you need to AND() those field names.

View solution in original post

1 REPLY 1

Presume you are trying this is detail view. If so, please try below. 

1) Please remove "required" on all those "Quick Edit" columns.

2) In the action, please create a condition something like 

AND(ISNOTBLANK([Phone]), ISNOTBLANK([Zip]),ISNOTBLANK([Customer Since]))

Where [Phone], [Zip] and [Customer Since] are quick edit fields. Please change/add/delete field names as applicable in your case. Basically you need to AND() those field names.

Top Labels in this Space