Focal Point
[SOLVED]App Studio 8201 Simple Dashboard report

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

January 15, 2018, 08:55 AM
Michele Brooks
[SOLVED]App Studio 8201 Simple Dashboard report
I am creating a dashboard that will display filters, reports and graphs. I need the reports to display without any borders or page numbers. For example, one of the reports has 3 columns which are all counts. I need the report to display without any headings, borders or page numbers. The report size will be just big enough to display the content. See example below. Thanks.
 
Claims      Bills         Procedures
112,094      20,987          38,209
 

This message has been edited. Last edited by: Michele Brooks,


WF 8205, Windows 10
Oracle DBMS
EXL07/PDF Output
January 15, 2018, 09:24 AM
Chaudhary
Try this, Hope it helps ,

 TABLE FILE CAR
SUM 
     MAX.CAR.BODY.SALES AS 'Claims'
     AVE.CAR.BODY.SALES AS 'Bills'
     MIN.CAR.BODY.SALES AS 'Procedures'
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET ASNAMES ON
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLEMBEDIMG ON
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/endeflt.sty,
$
TYPE=DATA,
     FONT='ARIAL',
     SIZE=20,
     BACKCOLOR=( 'WHITE' RGB(235 235 240) ),
     STYLE=BOLD,
     JUSTIFY=CENTER,
$
TYPE=TITLE,
     FONT='ARIAL',
     SIZE=24,
     COLOR='BLACK',
     BACKCOLOR='WHITE',
     STYLE=-UNDERLINE+BOLD,
$
ENDSTYLE
END
 



WF Production :- WF:8.0.0.4, 8.1.05 App-studio/Developer Studio(8.1.x) ,
8.2.0.1M , 8.2.0.2 (App-Studio8.2.x),
InfoAssist/+, InfoDiscovery
Output format:-AHTML, PDF, Excel, HTML
Platform:-Windows 7, 8,10
January 15, 2018, 09:35 AM
Michele Brooks
Thank you so much Chaudhary. Your example worked. Thanks for creating a Car File example that I could run. I just changed the SUM to SUM COMPUTE so that I could define the format as I11C. I need the counts to display with a comma. Thanks again.


WF 8205, Windows 10
Oracle DBMS
EXL07/PDF Output
January 15, 2018, 09:53 AM
Frans
You con't need to COMPUTE, you can format like this:

   
SUM 
     MAX.CAR.BODY.SALES/I11C AS 'Claims'



Test: WF 8.2
Prod: WF 8.2
DB: Progress, REST, IBM UniVerse/UniData, SQLServer, MySQL, PostgreSQL, Oracle, Greenplum, Athena.