我有一个带有以下代码的计算列。“状态”列的状态均为“未开始”、“进行中”、“已提交”和“已发送调查”。
我正在尝试使如果状态不是“已提交”或“已发送调查”,则将其设置为“未完成”,否则它们都处于“已发送调查”或“已提交”状态,它将返回作为“完成”。
我的问题是我无法让语法正确以使其以这种方式工作;我试过 OR() 但我可能做得不对?任何帮助,将不胜感激。
当前计算列
=IF(NOT([Day 1 Status]="Survey Sent"),"Not Completed",
IF(NOT([Week 1 Status]="Survey Sent"),"Not Completed",
IF(NOT([30 Day Status]="Survey Sent"),"Not Completed",
IF(NOT([90 Day Status]="Survey Sent"),"Not Completed",
IF(NOT([6 Month Status]="Survey Sent"),"Not Completed",
IF(NOT([Year 1 Status]="Survey Sent"),"Not Completed","Completed"))))))
我在逻辑上寻找什么
If Day 1 Status is not "Survey Sent" or not "Submitted", then "Not Completed"
If Week 1 Status is not "Survey Sent" or not "Submitted", then "Not Completed"
If 30 Day Status is not "Survey Sent" or not "Submitted", then "Not Completed"
If 90 Day Status is not "Survey Sent" or not "Submitted", then "Not Completed"
If 6 Month Status is not "Survey Sent" or not "Submitted", then "Not Completed"
If Year 1 Status is not "Survey Sent" or not "Submitted", then "Not Completed"
Else then "Completed"