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
Need to populate 60 dates in second prompt based on the date in first prompt

Hi,
I have two prompts in the prompts section.One is a Forecast Effective Date and the other Transaction date.If I give a date in the first prompt ( Forecast Effective Date) then I should get list of next 60 dates(all the dates) including the forecast effective date in the second prompt(Transaction date).Please let me know how this can be achieved.
Regards,
Yaseen
Answers
-
Create a prompt for your forecast date , make it auto apply ( uncheck the apply button from properties of prompt) and keep a presentation variable.
Create a second prompt and make the results as SQL Results and keep the below formula
SELECT YourTrxDateColumn FROM YOurSubjectArea where YourTrxDateColumn between Date '@{Fdate}{2017-11-11}' and timestampadd(SQL_TSI_DAY,60,Date '@{Fdate}{2017-11-11}')
0 -
Thanks Asim
0