reporting services - SSRS 2008 Matrix - Column Data Incorrect -
I am trying to replace an old local crystal report. Basically, for a given order, there are many line items that need to show the columns to leave the report, then change the column (that fit on a page) in order to show the order and the seller line number.
To do this, I added a matrix, and adding the group and everyone However, I get only one line item for every order / seller combination, even if at least two lines in each combination Items are there.
Current:
===== ========================== ============= Order + Vendor + Item 1 + Item 2 .. ========================== ================== + OrdValue1 + VendValue1 + value + [blank] ====================== ====================== + OrdValue2 + VendValue2 + [blank] + value ================== ==========================
desired:
= ================================================== == Order + Vendor + Item 1 + Item 2 ... ==================================== ======== + OrdValue1 + VendValue1 + value + value ============== ==================== ========== + OrdValue2 + VendValue2 + value + value ============ ==================== ============
Edit:
I will go back to the source dataset (This is assuming that SQL) and a Column_number calculation that resets for each combination of the order + vendor for 1, such as
ROW_NUMBER () over (order by order, seller order
Comments
Post a Comment