Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Transpose the data of table and restrict to show latest 12 months

Hi All,

Raw data
SalesMonth
171Jan-13
412Feb-13
480Mar-13
333Apr-13
282May-13
124Jun-13
430Jul-13
192Aug-13

and so on requirement is to show data in the transpose , and only latest 12 months should come. Excel file attached.

Please suggest!

Thanks

MV

2 Replies
Not applicable
Author

Hi All,

Data:

LOAD Sales, Month

FROM

C:\Users\Desktop\Month1.xlsx

(ooxml, embedded labels, table is Sheet1);

store Data into MyQvdFile.qvd;

NewData:

LOAD

Date((Month),'MMM-YY') as Max

FROM C:\Users\klrb099\Desktop\QV\Data\MyQvdFile.qvd (qvd);

Can we achieve this by storing data in qvd and then using qvt. I am not sure how to proceed.

Thanks

MV

PabloOrtiz
Partner - Creator
Partner - Creator

I send you an example, I hope to help you