COGNOiSe.com - The IBM Cognos Community

Legacy Business Intelligence => COGNOS ReportNet => Report Studio => Topic started by: gatorfe on 02 Aug 2007 04:12:47 PM

Title: Adding Days to a Date Field
Post by: gatorfe on 02 Aug 2007 04:12:47 PM
I have a report that shows me my orders and their schedule.  I just want to show the orders that have a scheduled date for the next 7 days so I know what needs to go out soon.  What should the formula syntax be for something like that?  Any suggestions would be greatly appreciated.
Title: Re: Adding Days to a Date Field
Post by: pvrraju on 07 Aug 2007 03:12:16 AM
Hi

Create a HTML tag and copy the following code.

Please change your date prompt name ("txtDatefromDate" which is bold and red in colour)  in the code and check. I think it will work

<script type="text/javascript">

var date = new Date();
var newDate = new Date();
newDate.setDate(date.getDate()+7);
var day = newDate.getDate();
var month = newDate.getMonth();
var year= newDate.getYear();
var months = new Array('Jan','Feb','Mar','Apr','May',
'Jun','Jul','Aug','Sep','Oct','Nov','Dec');
document.forms[0].elements["txtDatefromDate"].value= months[month]+" "+day+", "+year;

</script>
Title: Re: Adding Days to a Date Field
Post by: bdybldr on 19 Sep 2007 02:39:05 PM
Try this....

to_date({sysdate}) + 7
OR
_add_days({sysdate}, 7)