Logical looking dates reporting..

2014-08-09 Thread Phillip Vector
So I want to display the time between 2 events (down to the second). I have the following code.. cfset Years = #DateDiff(, Leaderboard.CreatedOn, Leaderboard.DateOfDeath)# + 18 cfset Months = #DateDiff(, Leaderboard.CreatedOn,

Re: Logical looking dates reporting..

2014-08-09 Thread Phillip Vector
Found this.. http://www.cflib.org/index.cfm?event=page.udfbyidudfid=377 This seems to work. Thanks anyway. :) On Sat, Aug 9, 2014 at 5:40 AM, Phillip Vector vec...@mostdeadlygame.com wrote: So I want to display the time between 2 events (down to the second). I have the following code..

Re: Logical looking dates reporting..

2014-08-09 Thread Phillip Vector
I stand corrected. That only calculated up to days.. I need months and years (and not just the calculation, but actual days and months.. Grrr... Going to get some wake up juice. :) On Sat, Aug 9, 2014 at 6:40 AM, Phillip Vector vec...@mostdeadlygame.com wrote: Found this..

Re: Logical looking dates reporting..

2014-08-09 Thread John M Bliss
http://cflib.org/udf/longTime On Sat, Aug 9, 2014 at 8:40 AM, Phillip Vector vec...@mostdeadlygame.com wrote: So I want to display the time between 2 events (down to the second). I have the following code.. cfset Years = #DateDiff(, Leaderboard.CreatedOn,

Re: Logical looking dates reporting..

2014-08-09 Thread Phillip Vector
Thank you. :) On Sat, Aug 9, 2014 at 9:40 AM, John M Bliss bliss.j...@gmail.com wrote: http://cflib.org/udf/longTime On Sat, Aug 9, 2014 at 8:40 AM, Phillip Vector vec...@mostdeadlygame.com wrote: So I want to display the time between 2 events (down to the second). I have the