Categories
- All Categories
- Oracle Analytics Learning Hub
- 20 Oracle Analytics Sharing Center
- 17 Oracle Analytics Lounge
- 233 Oracle Analytics News
- 45 Oracle Analytics Videos
- 15.9K Oracle Analytics Forums
- 6.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 87 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
An Expression Filter of a date ( between sysdate and sysdate +6 months)
John305
Rank 5 - Community Champion
Hi everyone,
I am new in OBIEE , i want to create an expression filter of a date that should be between Current date and Current date + 6 months
My question is : What is the fonction for Current date + 6 months !
Thank youuu
0
Answers
-
Use this TIMESTAMPADD(SQL_TSI_MONTH, 6, CURRENT_DATE) for current date plus 6 months and TIMESTAMPADD(SQL_TSI_DAY, 0, CURRENT_DATE) for current day.
0 -
Thank youuu !
0 -
You are welcome. Also take a look at the TIMESTAMPADD function in OBIEE to see the other available options
0 -
Just a detail: instead of TIMESTAMPADD(SQL_TSI_DAY, 0, CURRENT_DATE) use directly CURRENT_DATE .
It returns the exact same value but simpler to parse and totally avoid any date calculation by mistake (keep it simple).
0
