0

I wanted to make a form that would have multiple sentences with one checkbox each. When all of them are accepted (ticked) i wanted to have a submit button to become enable (previously disabled).

Is it possible? How can i do it?

4

1 回答 1

0

您可以尝试以下方法:

If(Checkbox3.Value && Checkbox2.Value && Checkbox1.Value,DisplayMode.Edit,Disabled)

在此处输入图像描述

检查一切后:

在此处输入图像描述

代码说明:

它对& - And 所有复选框值进行操作,如果全部为真(选中),则按钮显示模式将编辑,否则将处于禁用状态。

在此处输入图像描述

于 2021-01-28T13:50:49.590 回答