mlmcc,
The first formula he posted is the one from that page.
djhc50,
You have to determine what invalid date values you're getting and how you want to handle them. If the only invalid value is null and you want to handle that by using today's date instead, something like the formula that mlmcc posted should work. You could, for example, create a formula like that and then replace {person.date_of_birth} in the first formula you posted with the name of that new formula.
James
Main Topics
Browse All Topics





by: mlmccPosted on 2009-08-28 at 19:27:11ID: 25212784
Here is a fromula that does the caclulation orm06.shtm l
)),Val(Mid ({DateFiel d},5,2)),V al(Right({ DateField} ,2)))
http://www.kenhamady.com/f
To convert your date try
If IsNull({DateField}) then
CurrentDate
Else
DAte(Val(Left(DateField},4
mlmcc