Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Can we extact some table data in excel and paste as transposed..??

Dear All,

I needs to extract some data from multiple tables on a sheet. Have an already buit macro to extracts the data in excel but I need the data as transposed. Means vertical in horizontal. Can anyone help..??

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

Hi

If you are using the File Wizard (the Table Files... button on load script edit page):

  • Click the "Enable Transformation Step" button on the second page of the wizard
  • Click the Rotate tab
  • Click the Transpose button.

You can also edit the load script directly, by adding a Transpose() statement to the filters(....), for example:

LOAD * FROM ......
(biff, embedded labels, table is Sheet1$, filters(Transpose()));

Hope that helps

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

1 Reply
jonathandienst
Partner - Champion III
Partner - Champion III

Hi

If you are using the File Wizard (the Table Files... button on load script edit page):

  • Click the "Enable Transformation Step" button on the second page of the wizard
  • Click the Rotate tab
  • Click the Transpose button.

You can also edit the load script directly, by adding a Transpose() statement to the filters(....), for example:

LOAD * FROM ......
(biff, embedded labels, table is Sheet1$, filters(Transpose()));

Hope that helps

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein