我已经列出了三个列,维护周期(包括月度,季度等选项),上次维护日期(日期选择器)和下一个维护日期(计算列)。
=IF([Maintenance Cycle]="Monthly",[Last Maintenance Date]+30,IF([Maintenance Cycle]="Quarterly",[Last Maintenance Date]+90,))
并非此列表中的所有资产都会填写“上次维护”列,因此对于那些根据周期从0 + 30天或90开始计算的列。如果“上次维护日期”列中没有任何内容,我可以在“下一次维护日期”列中显示“3/30/1900”而不是显示“无预定维护”或只是空白吗?
由于
答案 0 :(得分:2)
你不能在公式中添加另一个测试吗?
=IF([Last Maintenance Date] = "", "No Scheduled Maintenance", [Maintenance Cycle]="Monthly",[Last Maintenance Date]+30,IF([Maintenance Cycle]="Quarterly",[Last Maintenance Date]+90,)))
如果我误解了你的问题,请告诉我。