As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
Hello There, I'm looking to build a report that has data fields retrieved on monthly bases, but the way is the fields sort down( on the left side of the report) and the month names are across( on the top of the report)
the code I have written: TABLE FILE CALLS SUM ONLINE_REQUESTS AS 'Online' EMAIL_REQUESTS AS 'Email' . .
BY Month NOPRINT ACROSS Month
the result I'm getting is the month names and data fields are repeated across the page, what is the way to not repeat the field names across the page.
thank you in advance!This message has been edited. Last edited by: Badr.A,
DEFINE FILE GGSALES
MTH /M = DATE;
MTHX/Mt = DATE;
-* For long month name
-*MTHX/Mtr = DATE;
END
TABLE FILE GGSALES
SUM DOLLARS
BY REGION
BY CITY
BY PRODUCT
ACROSS MTH NOPRINT
ACROSS MTHX AS ''
END
Note that the ACROSS MTH NOPRINT is there to keep alpha month displayed in a calendar order and not in an alphabetical order.
WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF In Focus since 2007
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013
I'm looking to arrange the fields by the months (BY Month) and at the same time need the month names to be ACROSS! thank you
quote:
Originally posted by MartinY: Are you looking for something similar to this ?
DEFINE FILE GGSALES
MTH /M = DATE;
MTHX/Mt = DATE;
-* For long month name
-*MTHX/Mtr = DATE;
END
TABLE FILE GGSALES
SUM DOLLARS
BY REGION
BY CITY
BY PRODUCT
ACROSS MTH NOPRINT
ACROSS MTHX AS ''
END
Note that the ACROSS MTH NOPRINT is there to keep alpha month displayed in a calendar order and not in an alphabetical order.
I'm looking to arrange the fields by the months (BY Month) and at the same time need the month names to be ACROSS!
Will make a strange output, but...
DEFINE FILE GGSALES
MTH /M = DATE;
MTHX/Mt = DATE;
-* For long month name
-*MTHX/Mtr = DATE;
END
TABLE FILE GGSALES
SUM DOLLARS
BY REGION
BY CITY
BY PRODUCT
BY MTH AS 'Month'
ACROSS MTHX AS ''
END
WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF In Focus since 2007
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013
I'm looking to arrange the fields by the months (BY Month) and at the same time need the month names to be ACROSS!
Will make a strange output, but...
DEFINE FILE GGSALES
MTH /M = DATE;
MTHX/Mt = DATE;
-* For long month name
-*MTHX/Mtr = DATE;
END
TABLE FILE GGSALES
SUM DOLLARS
BY REGION
BY CITY
BY PRODUCT
BY MTH AS 'Month'
ACROSS MTHX AS ''
END