Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     Subtotal with where total

Read-Only Read-Only Topic
Go
Search
Notify
Tools
Subtotal with where total
 Login/Join
 
<Kristy>
posted
I am trying to create a Subtotal label that reads "Total For
England" or "Total for Germany" etc. It works fine until I use a
Where Total. In that case, it prints as "Total For" and does not
list the country. Here's some code that produces this. It works
fine when I take out the Where Total clause. Any ideas? THANKS!

TABLE FILE CAR
SUM
DEALER_COST
RETAIL_COST
BY
COUNTRY
BY
CAR
BY
MODEL
ON COUNTRY SUBTOTAL
DEALER_COST
RETAIL_COST AS '*TOTAL FOR'
WHERE TOTAL ( DEALER_COST LT 8000 );
 
Report This Post
Member
posted Hide Post
Try removing the (). I use this quite often and it works fine, but I don't use the () with it. If not, can you post your error message?
 
Posts: 25 | Location: Kingwood, Tx | Registered: May 06, 2003Report This Post
Platinum Member
posted Hide Post
It seems that the only way to solve this is to include the subtotals in a customized subfoot.
SET PRINTPLUS=ON

DEFINE FILE CAR
TOTSTR/A40 = 'TOTAL FOR ' | COUNTRY ;
END

TABLE FILE CAR
SUM
DEALER_COST
RETAIL_COST
BY COUNTRY
BY CAR
BY MODEL
ON COUNTRY SUBFOOT
" WHERE TOTAL ( DEALER_COST LT 8000 );
ON TABLE SET STYLE *
TYPE=SUBFOOT, HEADALIGN=BODY, JUSTIFY=RIGHT, BACKCOLOR=SILVER, $
TYPE=SUBFOOT, ITEM=1, COLSPAN=3, JUSTIFY=LEFT, $
END
Regards,
Mikel

This message has been edited. Last edited by: <Mabel>,
 
Posts: 173 | Location: Madrid, Spain | Registered: May 09, 2003Report This Post
Platinum Member
posted Hide Post
I didn't think anyone would know about
SET PRINTPLUS = ON .

It's a rare need, and was to prevent upward
compatible problems for focexecs that didn't expect to get the BY value in the text.

But, I think the default should be ON, and if there is a problem with an old routine, use
PRINTPLUS=OLD.
 
Posts: 226 | Registered: June 08, 2003Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     Subtotal with where total

Copyright © 1996-2020 Information Builders