如果沒有日期,我希望我的代碼不顯示任何內容。如果該物品沒有日期,則不顯示
這裏是我的代碼:
=format(IIF(Fields!Phase.Value = "Pre-Feasibility" OR Fields!Phase.Value = "Selection", Fields!PreFeasibilityCurrentTargetDate.Value, IIF(Fields!Phase.Value = "Feasibility" OR Fields!Phase.Value = "Definition", Fields!FeasibilityCurrentTargetDate.Value, IIF(Fields!Phase.Value = "Implementation", Fields!ImplementationCurrentTargetDate.Value, ""))), "dd-MMM-yy")
因爲我它格式化到dd-MMM-yy
,它顯示的是,當該項目沒有一個日期。如果它沒有日期,我怎麼能改變這個顯示什麼都不顯示。
我已更新我的答案。你爲這個檢查寫一個iif,並把所有其餘的表達式放在else部分。 – niktrs