Focal Point
[Sloved]how to do transpose of columns to rows

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/926101612

August 21, 2009, 01:01 AM
krish
[Sloved]how to do transpose of columns to rows
Hi,

i have the following columns and data
Test_id---dow_id---revenue---Test_name---Test_desc
----------------------------------------
1000------1--------10----------kris--------test
1000------2--------20----------kris--------test
1000------5--------12----------kris--------test
2777------2--------14----------mess--------ress
2777------7--------17----------mess--------ress
-------------------------------------------

Is it possible to display the above data as following report

Test_id--- dow_id---revenue---dow_id---revenue---dow_id---revenue---dow_id----revenue---dow_id---revenue---dow_id---revenue---dow_id---revenue---Test_name---Test_desc
------------------------------------------------------------------------------------------------
1000-----1----------10-------2---------20---------0---------0--------0---------0---------5--------12-------0---------0----------0--------0-------krish-------test
2777------0---------0----------2--------14--------0---------0---------0---------0--------0---------0-------0----------0----------7-------17------mess--------ress

Basically i want to display columns for all the Dow's i.e.. 1-7 never mind if the data exist or not for any of the DOW's
is it possible to achive the above in WebFOCUS?

Thanks
krish

This message has been edited. Last edited by: krish,


7.1.1
Windows XP
HTML
August 21, 2009, 06:15 AM
Danny-SRL
Krish,

There was a thread on this problem yesterday. See here


Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF

August 21, 2009, 07:46 AM
krish
Thanks a lot for your response Daniel,

Iam able to achive till that level but i need to display other two columns at last after the across field namely Test_name and test_desc.

Thanks
krish


7.1.1
Windows XP
HTML
August 21, 2009, 10:51 AM
Danny-SRL
Krish,

Since I don't have your file, I am using the CAR file and instead of your TEST_NAME field I am simulating using AVE.RETAIL. In your example, just replace the fields.
In order to place the TEST_NAME at the end of the ACROSS, use the SEQUENCE attribute in your stylesheet with a high number:

  
TABLE FILE CAR
SUM AVE.RETAIL
BY COUNTRY
LIST SALES SEATS
BY COUNTRY
ON TABLE HOLD
END
-RUN
DEFINE FILE HOLD
ALIST/A5=LJUST(5, FTOA(LIST, '(D5c)', 'A5'), 'A5');
COLS/A12='COLUMN' || ALIST;
END
TABLE FILE HOLD
SUM AVE.RETAIL
BY COUNTRY
SUM SALES SEATS
BY COUNTRY
ACROSS COLS AS ''
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, COLUMN=AVE.RETAIL, SEQUENCE=99, $
ENDSTYLE
END



Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF

August 28, 2009, 04:51 AM
krish
Thanks a lot Danny with your approch I have resolved the issue Smiler


7.1.1
Windows XP
HTML
August 28, 2009, 11:00 AM
Danny-SRL
Krish,

You're welcome.
Out of curiosity, what type of application are you setting up?


Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF

August 31, 2009, 08:11 AM
krish
EMAIL Distribution


7.1.1
Windows XP
HTML