reportingservices 2005 - Consolidating multiple rows to a single row -


Is it possible to include multiple row values ​​in a row? With the stored procedure where I acquire the data, I use multiple layers, except for the same rows that category -column dfferentiates for those products which have been assigned to several categories . I want to strengthen these categories in one column, separate example data from new lines:

  name article number sales sales category --------------- ---------------- ----------------- Products 1 2059102-1 20520 Retailer 1 --------- ---------------- ----------------------- Products 1 2059102-1 20520 Retailer 2 --- ---------------- ----------------------------- Products 1 2059102-1 20520 retailer 3 ------------- ---------------------------------- - Product 2 2059102-2 2050 Retailer 1 ------- ---------------------------------- ------- Product 2 2059102-2 5302 Retailer 3   

Desired result:

  Name the article number B Sale sales category --------------------- -------------------------- - Product 1 2059102-1 20520 Retailer 1 Retailer 2 Retailer 3 ----------- ------------------------- ------------ Product 2 2059102-2 2050 Retailer 1 Retailer 3   

Thank you!

Create an RDL table and set up a grouping two group expressions Along with the expanding section of the table (so you have to create a group in the table description, but with many group expressions). The expression of the group should be one for each field: name, paragraph number.

Then put one column in the RDL table for each field (name, paragraph number, sale, sale category). This move is putting a list control in the sales category cell. Add a textbox for the "Sales category" field in the list and I think you will get the result you want.

There is nothing bad about it, but it is not a very safe IMHO.

Comments

Popular posts from this blog

mysql - BLOB/TEXT column 'value' used in key specification without a key length -

c# - Using Vici cool Storage with monodroid -

python - referencing a variable in another function? -