【问题标题】:Sharepoint List Column Validation: If certain value in one Column, other Column must not be emptySharepoint 列表列验证:如果一个列中有特定值,则其他列不能为空
【发布时间】:2020-02-06 15:57:11
【问题描述】:

我在共享点列表中的列验证存在问题。 如果在 column1(下拉列表)中选择了某个值,我想强制用户填写 column2。否则,它 coulmn2 应该留空。 到目前为止,我尝试过:

= IF([column1]="xxx";LEN([column2]>0;LEN([column2]=0))

非常感谢任何帮助。提前致谢!

【问题讨论】:

    标签: validation sharepoint sharepoint-list


    【解决方案1】:

    使用下面的公式来实现。

    =IF([column1]="xxx",IF(LEN([column2])>0,TRUE,FALSE),TRUE)
    

    【讨论】:

      猜你喜欢
      • 2013-09-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-04-27
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多