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 am trying to get a formula to show in excel when the report runs so the user can trigger them to compute. I am having to use R1C1 style references due to the columns changing location on each tab of the report. An example formula would be: =((((AL3*AF3*(AH3+AI3))-(X3*R3*(T3+U3)))+AREA!$L$16)/(((AH3+AI3)*AF3)-((T3+U3)*R3)+AREA!$L$12+AREA!$L$13))-AREA!$B$15
I beleive I am going to have to convert to R1C1 as below, to get the references to pan out on each tab: =INDIRECT("R"&ROW()&"C"&COLUMN()+27,FALSE)-INDIRECT("R"&ROW()&"C"&COLUMN()+13,FALSE)
I have tried putting these in using a compute statement and had some luck with the first example, but now that I have to include &Row and &Column references, focus thinks these are variables. Any help?