Jan 17, 2003 #1 arachnoid Programmer Jun 14, 2002 108 US What are some options for accomplishing this? The report is an open order report where they are wanting to see the orders for 60 days out. Can this be done by declaring a variable? If so, could you post an example Thank you in advance.
What are some options for accomplishing this? The report is an open order report where they are wanting to see the orders for 60 days out. Can this be done by declaring a variable? If so, could you post an example Thank you in advance.
Jan 17, 2003 #2 Naith Programmer May 14, 2002 2,530 GB You don't need a variable. It's much simpler. In your Record Selection, you're aiming for something like this: {Orders.Date} in CurrentDate to CurrentDate+60 Naith Upvote 0 Downvote
You don't need a variable. It's much simpler. In your Record Selection, you're aiming for something like this: {Orders.Date} in CurrentDate to CurrentDate+60 Naith
Jan 20, 2003 Thread starter #3 arachnoid Programmer Jun 14, 2002 108 US My biggest issue is that I am working with 6 digit Julian dates and that method would require yearly maintenance. Thanks for your reply. Upvote 0 Downvote
My biggest issue is that I am working with 6 digit Julian dates and that method would require yearly maintenance. Thanks for your reply.
Jan 20, 2003 #4 Naith Programmer May 14, 2002 2,530 GB Why? I wouldn't have thought yearly maintenance would come into it at all. e.g. 2452628.5 + 21 = 2452649.5 just like 20/21/02 + 21 = 10/01/03 If you need to convert your dates so you've got something easier to work with, go to http://support.crystaldecisions.com/downloads/and download UFLJUL.EXE, giving you access to the JulianToDate and DateToJulian functions. Naith Upvote 0 Downvote
Why? I wouldn't have thought yearly maintenance would come into it at all. e.g. 2452628.5 + 21 = 2452649.5 just like 20/21/02 + 21 = 10/01/03 If you need to convert your dates so you've got something easier to work with, go to http://support.crystaldecisions.com/downloads/and download UFLJUL.EXE, giving you access to the JulianToDate and DateToJulian functions. Naith