计算列:将空单元格 return 设为 "No"
calculated column: Make empty cells return as "No"
您好,我有一个计算列,我想确保它 return 是或否。
我无法将空单元格添加到 return 不返回,结果为 'empty'
这是我目前正在尝试的代码,有什么问题吗?
case
when [mycolumn]~="TEST" then "Yes"
when [mycolumn]="" then "No"
else "No"
end
空单元格不在您的案例中...
case
when [mycolumn]~="TEST" then "Yes"
when SN([mycolumn],"")="" then "No"
else "No"
end
可能没有值,所以值为null
。请注意,空值不同于空值 ""
。这里应该总是 return 一个值 ;)
If([mycolumn] is null or [mycolumn]="","No","Yes")
您好,我有一个计算列,我想确保它 return 是或否。
我无法将空单元格添加到 return 不返回,结果为 'empty'
这是我目前正在尝试的代码,有什么问题吗?
case
when [mycolumn]~="TEST" then "Yes"
when [mycolumn]="" then "No"
else "No"
end
空单元格不在您的案例中...
case
when [mycolumn]~="TEST" then "Yes"
when SN([mycolumn],"")="" then "No"
else "No"
end
可能没有值,所以值为null
。请注意,空值不同于空值 ""
。这里应该总是 return 一个值 ;)
If([mycolumn] is null or [mycolumn]="","No","Yes")