Using Visual Studio 2010 and SQL Server 2008 Database.
I'm very new to SSRS and in the process of moving years worth of Crystal Reports to Reporting Services. I have formulas that create fields in many of my Crystal Reports that use begin and end date parameters to provide Daily, Weekly, MTD, and YTD columns on my CR. Works great, but I can't make that happen in SSRS.
Here is my WTD Field in CR:::::
if {TICKET.TKTDATE} >= {?WTD Start Date} and {TICKET.TKTDATE} <= {?Report Date}
then {TICKET.PRODQTY}
I tried using the same logic in SSRS ....here's the expression =IIf(Fields!TKTDATE) BETWEEN (Parameters!WTDSTARTDATE.Value) and (Parameters!REPORTDATE.Value),Fields!PRODQTY)....but keep getting an error. I assumed that I would have to add an expression field for WTDQTY??? Am I doing this all wrong? The daily column works fine but my other columns are totally blown up!
Thanks for any help or direction you can provide. I'm sure this is basic for most people but I'm struggling!
I'm very new to SSRS and in the process of moving years worth of Crystal Reports to Reporting Services. I have formulas that create fields in many of my Crystal Reports that use begin and end date parameters to provide Daily, Weekly, MTD, and YTD columns on my CR. Works great, but I can't make that happen in SSRS.
Here is my WTD Field in CR:::::
if {TICKET.TKTDATE} >= {?WTD Start Date} and {TICKET.TKTDATE} <= {?Report Date}
then {TICKET.PRODQTY}
I tried using the same logic in SSRS ....here's the expression =IIf(Fields!TKTDATE) BETWEEN (Parameters!WTDSTARTDATE.Value) and (Parameters!REPORTDATE.Value),Fields!PRODQTY)....but keep getting an error. I assumed that I would have to add an expression field for WTDQTY??? Am I doing this all wrong? The daily column works fine but my other columns are totally blown up!
Thanks for any help or direction you can provide. I'm sure this is basic for most people but I'm struggling!