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.
I have a pivot table with date and minutes, I'm not able to get a row total for the minutes. Such as: 2018/2/3 - 70 min 2018/2/9 - 36 min 2018/2/10 - 20 min SUM weekly_mins ROW-TOTAL This gives me a zero. Any ideas on how to solve this? Thanks people.This message has been edited. Last edited by: FP Mod Chuck,
Only numeric values can be summarized. So you will have to create your row-total based on a numeric value of WEEKLY_MINS
Do not think that because you are using SUM as the verb that mean WEEKLY_MINS has been summarized in your below code
TABLE FILE ...
SUM WEEKLY_MINS
BY LOWEST EMPLID
ACROSS LOWEST 'End Week'
...
END
it only specified to focus to "Group" the information based on the BY/ACROSS field.
If WEEKLY_MINS was a numeric field, yes SUM will have it summarized but in this case since it seems that only one value exist per EMPLID / EOW_DT it shows the proper value otherwise it will have shown the last one. See below sample
-* This one gives you all existing car value per Country / Seats
TABLE FILE CAR
PRINT CAR
BY COUNTRY
ACROSS SEATS
END
-* This one gives you only the last car value per Country / Seats
TABLE FILE CAR
SUM CAR
BY COUNTRY
ACROSS SEATS
END
In conclusion : you need numeric value to have your row-total
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