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 areport with all Week information,month information. sample report is
PRINT SHTG SALES BY ACCT_YR_I BY DUMMY NOPRINT BY ACCT_MO_I BY V_BLANK NOPRINT BY V_WK_N AS 'ACCT, WK' ACROSS V_GROUP AS '' ON V_BLANK RECOMPUTE AS 'MTD'
output is Acct week SHTG $ SALES $
Feb Wk2 21.7 1,828.2 Feb Wk3 24.2 2,083.4 Feb Wk4 19.9 1,705.8
MTD 65.7 5,617.3 YTD 65.7 5,617.3
Mar Wk1 21.0 1,961.0 Mar Wk2 21.9 1,851.9 Mar Wk3 19.9 1,620.2 Mar Wk4 20.6 1,715.3 Mar Wk5 18.4 1,603.6
MTD 101.9 8,752.0 YTD 167.6 14,369.3
From the above report how to get YTD information. MTD is a recompute value.March ytd is addition of FEB MTD and MARCH MTD.and so on....
Thanks in advance.This message has been edited. Last edited by: Kerry,
sorry actually my print fields are compute fields. For every month we are displayinf MTD and YTD values.In my previous post i mentioned 2 months report.If i give subtotal or column-total it will be for entire report ytd total it will display.We want for every month YTD information.
Hello Souji, Another alternative would be to do all the totals in the computes and put them in a sub foot. Personally, I do not like this because you would have to play with the formatting a bit to align correctly.
COMPUTE CY_RATE/P15.2CB=(GM_WTD_TOT_SHTG_A/GM_WTD_BTWN_SLS_A)*100; AS 'SHTG %' COMPUTE LY_RATE/P15.2CB=(GM_LY_TOT_SHTG_A/GM_LY_BTWN_SLS_A)*100; NOPRINT
COMPUTE BP_LY/P15.2CB=((GM_LY_TOT_SHTG_A/GM_LY_BTWN_SLS_A)*100)-((GM_WTD_TOT_SHTG_A/GM_WTD_BTWN_SLS_A)*100); AS 'B/(P),LY'
BY ACCT_YR_I NOPRINT BY DUMMY NOPRINT BY ACCT_MO_I NOPRINT BY V_BLANK NOPRINT BY V_WK_N AS 'ACCT, WK' BY SEG_STAT_C AS 'INV,STATUS' ACROSS V_GROUP1 AS '' ON V_BLANK RECOMPUTE AS 'MTD' ON V_BLANK SUBFOOT AS "END -RUN
I WAS ABLE TO GET MTD VALUES correct. when i tried to print the YTD values by using subfoot SHTG $ and SALES $ are coming correct.Remaining 2 SHTG% and B/(P)LY are wrong. Can some one please suggest any idea.
YTD SHTG% is average of FEB MTD value and MAR MTD value.