Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.

Hi ,
Any ideas on the above in pivot table
Not sure I understand the issue?
UPDATE: Can you may be elaborate?
Hi Sunny,
the first table is the way data is and the customer is wishing to see it in the second way , and I am trying to do it in Pivot using above etc but couldn't get it.
Can you suggest any thing without any changes in the edit script.
Thanks
Kiran
Try like below,
Temp:
LOAD * INLINE [
Sno, Prod Family, Product, Category, Qty
1, Accessories, Mouse, Hardware, 2
2, Accessories, Keyboard, Hardware, 3
3, Accessories, Headset, Hardware, 1
4, Computer, Windows, S/W, 1
5, Computer, Office, S/W, 1
];
NoConcatenate
Load RowNo() as Sno, *;
Load [Prod Family],
Concat(Product,', ') as Product,
Category,
Sum(Qty) as Qty
Resident Temp Group by [Prod Family],Category ;
DROP Table Temp;
Note: Try to post data instead of picture.
see attach
Hi Nagraj,
Thanks for your suggestion, but is there a way that we can do it from from end , because we customer don't want to miss the details.
Kiran
Like this?
Fine. Check the attachment.
Yes. Chr(10) is appropriate in this case. ![]()
Kumar -
Tamil brought up a great point. It becomes very easy for us to provide a sample if the raw data is not provided as an image. He had to type that up which requires a lot of time and effort. You can continue to post the images, but do include raw data in the form which we can use to just copy paste to create a sample application for you.
Best,
Sunny