2013-08-07 84 views
1

我在我SSRS的Visual Studio報告,提示以下錯誤。視覺工作室預計年底

contains an error: [BC30205] End of statement expected.

但我看不到我需要改變。

我使用的代碼是: -

=IIf(IsNothing(Sum(Fields!Quantity.Value, "Accrued")),0,(Sum(Fields!Quantity.Value, "Accrued")) + (Sum(Fields!Quantity.Value, "serv1"))/(Sum(Fields!PAFQuantity.Value, "ForecastHrs") 
)))) 

誰能指教?

回答

5

看起來你有2個額外的封閉括號。

當你在一個表達式或SSRS代碼框中有代碼,它不會編譯,嘗試建立在Visual Studio中VB.Net項目和代碼粘貼到一個真正的代碼編輯器。關鍵字突出顯示和內聯語法檢查可以極大地幫助您。