Focal Point
[SOLVED] Displaying Measures Down the Side

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

August 06, 2009, 07:33 AM
rmcvicker
[SOLVED] Displaying Measures Down the Side
Hi,
I am new to WebFOCUS and I'm looking for some help on how i can get my metrics to display down the side rather than going across the top?

So instead of displaying:

CAR DEALER_COST RETAIL_COST SALES
ALFA ROMEO 16,235 19,565 30200
AUDI 5,063 5,970 7800
BMW 49,500 58,762 80390

I would like:

ALFA ROMEO AUDI BMW
DEALER_COST 16,235 5,063 49,500
RETAIL_COST 19,565 5,970 58,762
SALES 30,200 7,800 80,390

I mostly work in the GUI, so if there is a way to do it there that would be best, but any help would be appreciated.

Thanks,
Ryan

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


WebFOCUS 7.6.10
Windows & Linux
All Outputs
August 06, 2009, 07:51 AM
Danny-SRL
Ryan,

The code you want is
  
SUM 
     DEALER_COST OVER 
     RETAIL_COST OVER 
     SALES
ACROSS CAR


In the GUI, you r-click the field, select options and in "Options" under "General" you find "New line (OVER)"

Good luck!


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

August 06, 2009, 07:58 AM
rmcvicker
Exactly what i needed! Thanks Daniel!


WebFOCUS 7.6.10
Windows & Linux
All Outputs