Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
surajap123
Creator II
Creator II

horizonal table

Hi All,

I have to create a report(may be in a straight table). But the format of the report should be like below, ie. Dimensions & expressions should be one below the other and and little space and again another set in same fashion.

Product  -          Pen
Product ID -       1
Brand -              abc
Sales Amount - 100

Product -           Pencil
Product ID -       2
Brand -              efj
Sales Amount - 150

Product -          Rubber
Product ID -     3
Brand -             xyz
Sales Amount - 40

Please suggest me, how to achieve this.

1 Solution

Accepted Solutions
Frank_Hartmann
Master II
Master II

here the solution with blank rows after each block 🙂

View solution in original post

21 Replies
Anil_Babu_Samineni

This will default come, When you use Pivot Table and then option for Partial Sum from Presentation for Dimensions

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
tyagishaila
Specialist
Specialist

can you share sample data for both load file and output report.(in a table format)?

surajap123
Creator II
Creator II
Author

Thanks for the reply.

I want dimensions one below the other. The options you have specified doesn't format the table as I shown above.

surajap123
Creator II
Creator II
Author

Hi Shaila,

Here is the data.

LOAD * INLINE [
Product, ProductID, Brand, Sales Amount
Pen, 1, abc, 100
Pencil, 2, efj, 150
Rubber, 3, xyz, 50
]
;

tyagishaila
Specialist
Specialist

and output?

surajap123
Creator II
Creator II
Author

The output I mentioned in my initial post.

Frank_Hartmann
Master II
Master II

try this in a textbox:

= 'Product - '& subfield(Concat(DISTINCT(Product),'|',1),'|',1)&Chr(10)&

  'Product ID - '&subfield(Concat(DISTINCT(ProductID),'|',1),'|',1)&Chr(10)&

  'Brand -'& subfield(Concat(DISTINCT(Brand),'|',1),'|',1)&Chr(10)&

  'Sales Amount -'&subfield(Concat(DISTINCT([Sales Amount]),'|',1),'|',1)&Chr(10)&

  Chr(10)&

  'Product - '& subfield(Concat(DISTINCT(Product),'|',1),'|',2)&Chr(10)&

  'Product ID - '&subfield(Concat(DISTINCT(ProductID),'|',1),'|',2)&Chr(10)&

  'Brand -'& subfield(Concat(DISTINCT(Brand),'|',1),'|',2)&Chr(10)&

  'Sales Amount -'&subfield(Concat(DISTINCT([Sales Amount]),'|',1),'|',2)&Chr(10)&

  Chr(10)&

  'Product - '& subfield(Concat(DISTINCT(Product),'|',1),'|',3)&Chr(10)&

  'Product ID - '&subfield(Concat(DISTINCT(ProductID),'|',1),'|',3)&Chr(10)&

  'Brand -'& subfield(Concat(DISTINCT(Brand),'|',1),'|',3)&Chr(10)&

  'Sales Amount -'&subfield(Concat(DISTINCT([Sales Amount]),'|',1),'|',3)&Chr(10)&

hope this helps

Anil_Babu_Samineni

I doubt, Whether we have that option. It takes much time right while we have more than 10/15 slides.

How about this?

Capture.PNG

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anil_Babu_Samineni

Or else, always we need to create each table together and then club, This must be a Work Around

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful