RE: Calculate the date next Sunday

2003-11-05 Thread Mike Kear
Message- From: Spike [mailto:[EMAIL PROTECTED] Sent: Wednesday, 5 November 2003 4:53 PM To: CF-Talk Subject: Re: Calculate the date next Sunday Something like this should do: cfset dateOffset = 8-dayOfWeek(Now()) !--- If you want to set the effective date of the transaction as today if the day

Re: Calculate the date next Sunday

2003-11-05 Thread Spike
! Looks exactly what I want. Cheers, Michael Kear Windsor, NSW, Australia AFP Webworks. -Original Message- From: Spike [mailto:[EMAIL PROTECTED] Sent: Wednesday, 5 November 2003 4:53 PM To: CF-Talk Subject: Re: Calculate the date next Sunday Something

RE: Calculate the date next Sunday

2003-11-05 Thread Mike Kear
Windsor, NSW, Australia AFP Webworks. -Original Message- From: Spike [mailto:[EMAIL PROTECTED] Sent: Wednesday, 5 November 2003 5:45 PM To: CF-Talk Subject: Re: Calculate the date next Sunday Not exactly the other side of the globe... I'm in Brisbane at the minute ;) Spike

Calculate the date next Sunday

2003-11-04 Thread Mike Kear
I have a task where I have to insert the effective date of a transaction, which is the following Sunday, regardless of the day the form is submitted. Anyone know of a UDF or other functionality that'll work that out? Cheers, Michael Kear Windsor, NSW, Australia AFP Webworks. .

Re: Calculate the date next Sunday

2003-11-04 Thread Spike
Something like this should do: cfset dateOffset = 8-dayOfWeek(Now()) !--- If you want to set the effective date of the transaction as today if the day is sunday --- cfif dateOffset GT 1 cfset targetDate = dateAdd('d',dateOffset,Now()) cfelse cfset targetDate = Now() /cfif !--- If you want to

Re: Calculate the date next Sunday

2003-11-04 Thread Spike
Should probably amend that cfif block to something more like this: cfif dateOffSet EQ 7 cfset targetDate = Now() cfelse cfset targetDate = dateAdd('d',dateOffset,targetDate) /cfif Spike Spike wrote: Something like this should do: cfset dateOffset = 8-dayOfWeek(Now()) !--- If you want