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'd like to get a Prior Year comparison. For this matter I would like the user to enter a current year date range. E.g.
ValutaDatum GE '&ValutaDatumvon.ValutaDatum von TTMMJJJJ.' AND ValutaDatum LE '&ValutaDatumbis.ValutaDatum bis TTMMJJJJ.'
This one is easy. However from this range I'd like to get the second range (Prior Year), which I don't how to make it work, as I cannot use the "defined" filter (Datefrom, Dateto) field in another filter.
Ideally I would do it like that: ValutaDatum GE dateadd('&ValutaDatumvon.ValutaDatum von TTMMJJJJ.','Y',-1) AND ValutaDatum LE dateadd('&ValutaDatumbis.ValutaDatum bis TTMMJJJJ.','Y',-1)
Looking for a elegant solution instead of asking the user for 4 dates (2 ranges).
thanks & regardsThis message has been edited. Last edited by: Tamra,
I tried this, but however it wouldn't work..this is the filter set. In the report I am able to select the value range, however only the selected is displayed, but the selected through "DATEADD" is considered..
Can you see my mistake?
(ValutaDatum GE '&ValutaDatumvon.ValutaDatum von TTMMJJJJ.' AND ValutaDatum LE '&ValutaDatumbis.ValutaDatum bis TTMMJJJJ.' ) OR (ValutaDatum GE DATEADD(&ValutaDatumvon.ValutaDatum von TTMMJJJJ.,'Y',-1) AND ValutaDatum LE DATEADD(&ValutaDatumbis.ValutaDatum bis TTMMJJJJ.,'Y',-1))
To verify that the syntax is correct for the WHERE statement you can create a new defined field or compute and add the logic, run the report and see if the value is correct.
Searching the WebFOCUS or InfoAssist forums for DATEADD will provide a few ideas on coding this.