I am in the process of moving a number of reports out of Access 2007 into SQL Server 2008 R2 Reporting services. Most of the time, this is fairly easy to accomplish but I have run into an issue I'm not sure how to fix so hopefully someone really smart with SSRS 2008 can help out.
The Access query select statement that I have been using is this:
SELECT dbo_CUSTOMER_ORDER.CUSTOMER_ID, bo_CUST_ORDER_LINE.PART_ID, dbo_CUSTOMER_ORDER.ID, dbo_RECEIVABLE.INVOICE_ID, dbo_RECEIVABLE.INVOICE_DATE, dbo_RECEIVABLE.TOTAL_AMOUNT, dbo_RECEIVABLE.LAST_PAID_DATE, dbo_RECEIVABLE.PAID_AMOUNT, dbo_RECEIVABLE_LINE.QTY, (IIf([dbo_CUST_ORDER_LINE]![PART_ID]="97870",([dbo_RECEIVABLE_LINE]![QTY]*20),IIf([dbo_CUST_ORDER_LINE]![PART_ID]="97871",([dbo_RECEIVABLE_LINE]![QTY]*20), ([dbo_RECEIVABLE_LINE]![QTY]*10)))) AS Commission
My issue is that when I attempt to...