2
我試圖將條形圖列的顏色更改爲黃色,如果它是當前月份。出於某種原因,SSRS不會將「Today()」或「Now()」識別爲函數。SSRS顏色表達式
基本上我想說的是:=iif(month(Today()) = Month(Fields!CalendarYearMonth.Value), "Yellow", "#00000000")
。在today
之後的()中,我總是收到語法錯誤。
CalendarYearMonth存儲爲「201308」。我還有一個CalendarMonthDesc字段(8月)或一個CalendarMonth字段(08)。