Enea:
In my experience the best way to do this is add a Predefined Condition to the universe. You will need to speak to your universe designer about this (unless that is you!)
Here are some examples of predefined conditions I have used in the past:
This is relevant for Oracle 9i Datawarehouse:
Create a predefined condition like below:
Last 28 Days:
Code:
@select(DATE DIMENSION) BETWEEN (sysdate-28) AND sysdate
Next28 Days:
Code:
@select(DATE DIMENSION) BETWEEN sysdate AND (sysdate+28)
Today and tomorrow:
Code:
@select(DATE DIMENSION) BETWEEN sysdate AND (sysdate+1)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.