Aug 25, 2006 #1 drinker Technical User May 9, 2006 57 US What would the formula be to show all Customer Desired Shipped Dates from curent date and everything up to two days out? Thank You. {CUSTOMER_ORDER.DESIRED_SHIP_DATE}
What would the formula be to show all Customer Desired Shipped Dates from curent date and everything up to two days out? Thank You. {CUSTOMER_ORDER.DESIRED_SHIP_DATE}
Aug 25, 2006 #2 Madawc Programmer Sep 5, 2002 7,628 GB In selection, Code: {CUSTOMER_ORDER.DESIRED_SHIP_DATE} in [currentdate to currentdate+2] This is for Crystal 10. There is also DateAdd for more complex operations, but +2 for a date is assumed to be plus two days Madawc Williams (East Anglia, UK). Using Windows XP & Crystal 10 Upvote 0 Downvote
In selection, Code: {CUSTOMER_ORDER.DESIRED_SHIP_DATE} in [currentdate to currentdate+2] This is for Crystal 10. There is also DateAdd for more complex operations, but +2 for a date is assumed to be plus two days Madawc Williams (East Anglia, UK). Using Windows XP & Crystal 10
Aug 25, 2006 #3 dgillz Instructor Mar 2, 2001 10,059 US You did not state your crystal version, which can affect the answer. However in crystal 8 and newer, in the record selection formula try this: {CUSTOMER_ORDER.DESIRED_SHIP_DATE} in CurrentDate to Dateadd("d",2,CurrentDate) Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports http://www.gainfocus.biz "A fine is a tax for doing wrong. A tax is a fine for doing well. " - unknown Upvote 0 Downvote
You did not state your crystal version, which can affect the answer. However in crystal 8 and newer, in the record selection formula try this: {CUSTOMER_ORDER.DESIRED_SHIP_DATE} in CurrentDate to Dateadd("d",2,CurrentDate) Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports http://www.gainfocus.biz "A fine is a tax for doing wrong. A tax is a fine for doing well. " - unknown
Aug 25, 2006 Thread starter #4 drinker Technical User May 9, 2006 57 US Thanks! Currently, using this formula my report shows only current date , but I,m sure this is what I need. I am using Crystal 8.5. Upvote 0 Downvote
Thanks! Currently, using this formula my report shows only current date , but I,m sure this is what I need. I am using Crystal 8.5.