Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 208 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
An Expression Filter of a date ( between sysdate and sysdate +6 months)

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
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