Focal Point
[SOLVED] Return records to report instead of summary

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

June 29, 2009, 03:51 PM
<bhouse>
[SOLVED] Return records to report instead of summary
I would like to return records from a query to excel. Currently the report is in summary form.

This is what the report looks like now:


Region State Amount
North New York 3,226.55
Maine 588.84
Vermont 8,042.16
South Florida 827.54
Georgia 1,532.45
South Carolina 7,527.42
West New Mexico 3,822.07
Texas 7,579.25
California 8,800.68


This is what I want the report to look like:


Region State Amount
North New York 3,226.55
North Maine 588.84
North Vermont 8,042.16
South Florida 827.54
South Georgia 1,532.45
South South Carolina 7,527.42
West New Mexico 3,822.07
West Texas 7,579.25
West California 8,800.68


Thanks in advance,
Brad

This message has been edited. Last edited by: Kerry,
June 29, 2009, 04:05 PM
<bhouse>
Sorry the example did turn out as I had planned.

Basically I need to return data for each field in a record.

Thanks,
Brad
June 29, 2009, 04:28 PM
GinnyJakes
Is the region on every record?

SET BYDISPLAY=ON
TABLE FILE filename
PRINT AMOUNT
BY REGION 
BY STATE
ON TABLE SET ONLINE-FMT EXL2K
END  



Ginny
---------------------------------
Prod: WF 7.7.01 Dev: WF 7.6.9-11
Admin, MRE,self-service; adapters: Teradata, DB2, Oracle, SQL Server, Essbase, ESRI, FlexEnable, Google
June 29, 2009, 04:37 PM
<bhouse>
Thank you so much Ginny. It works perfectly.
June 29, 2009, 04:42 PM
GinnyJakes
This is pretty basic stuff. Have you had any training or been pointed to the documentation? Do you have Developer Studio or are you writing this by hand? You might want to check out the doc link in the upper right-hand corner of this page and do a little perusing to get familiar with WebFOCUS functionality.

Best of luck!


Ginny
---------------------------------
Prod: WF 7.7.01 Dev: WF 7.6.9-11
Admin, MRE,self-service; adapters: Teradata, DB2, Oracle, SQL Server, Essbase, ESRI, FlexEnable, Google