Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Horizontal to vertical

Hi All,

I have a created a straight table that looks like an image below

Capture.PNG

However,

I need it to look like something like this one

Capture.PNG

How can it be done?

14 Replies
Not applicable
Author

HI,

I have tried it one and it worked. However, this menu does not always pop up.

trdandamudi
Master II
Master II

Please make sure you have a check mark against "Always Show Design Menu Items" in user preferences under "Design" tab. see the screen shot below:

Menu_3.jpg

Not applicable
Author

Tahnk you very much!

trdandamudi
Master II
Master II

You are welcome... Glad able to help...

Saravanan_Desingh

If you want to combine the rows into columns, you can use Generic-Load

Data:

LOAD * INLINE [

    Grouped Status, Count

    Draft Report Delivered, 7

    In Progress, 9

    In Planning, 0

];

GenericLabel:

Generic Load  1,*

  Resident Data;

CombinedGenericTable:

Load 1 Resident Data;

FOR i = NoOfTables()-1 to 0 STEP -1

  LET vTable=TableName($(i));

  IF WildMatch('$(vTable)', 'Data.*') THEN

  LEFT JOIN ([CombinedGenericTable]) LOAD * RESIDENT [$(vTable)];

  DROP TABLE [$(vTable)];

  ENDIF

NEXT i

Drop Table Data;