i have an ssrs report
where i have to get only current month amount
so previous months should be zero and forward months should be zero
iam getting previous months zer values but iam uanble to get forward months values as zeros
i wrote below expression
=iif(Fields!Finance_Indicator.Value="Forecast",IIF(CDate(Fields!Month_Name.Value + " 01, "+Fields!Financial_Year.Value) > Now(),
SUM(Fields!Performance_Amount_Usd.Value),0),SUM(Fields!Performance_Amount_Usd.Value))
can any one please help me...how to get this....