April 12, 200718 yr I'm new to FMP 8, and I'm having trouble with my formulas. For example to Calculate and age: (Year(Status(CurrentDate)) - Year(DOB) - If(Status(CurrentDate) < Date(Month(DOB), Day(DOB), Year(Status(CurrentDate))), 1, 0)) & " Yrs, " & (Mod(Month(Status(CurrentDate)) - Month(DOB) + 12 - If(Day(Status(CurrentDate)) < Day(DOB), 1, 0), 12)) & " Mnths, " & (Today- Date(Month(Status(CurrentDate)) - (Day(DOB) > Day(Status(CurrentDate))), Day(DOB), Year(Today))) & " Dys " This formula is no longer accepted. Can you give me a new formula for this? Thanks
April 12, 200718 yr Hi change all occurrences of "Status(Current Date)" and "ToDay" with Get ( CurrentDate ) ... and all commas with ";"
Create an account or sign in to comment