Apr 16, 2020 10:46 AM
I have a formula that calculate’s a person’s age. The problem that I’m having is that when information is entered for ‘Died’, nothing is entered for 'Age of Death’.![Actors|690x225]
What can I do to correct this?
Apr 16, 2020 12:34 PM
Please share the formula. Your image didn’t post - probably because you’re new to the community.
Apr 16, 2020 03:21 PM
Here is the formula in question:
IF( {BORN}, DATETIME_DIFF( IF( {DIED}, {DIED}, TODAY() ), {BORN}, ‘years’ ))
Apr 16, 2020 11:33 PM
Hi @Rod_Myers1,
You don’t need the first IF statement. So the formula would just be
DATETIME_DIFF( IF( {DIED}, {DIED}, TODAY() ), {BORN}, 'years')
This will do the following:
If there is a date in Died, the IF formula will return Died and will calculate the difference between Died and Born.
If Died field is empty, the IF will return Today() and will calculate the difference between Born and Today.
BR,
Mo
Apr 17, 2020 05:57 AM
It worked well–thank you very much. I have a problem of using a field for AGE OF DEATH. Is there a formula that would fill that field when DIED is filled?
Apr 17, 2020 06:27 AM
The above formula is already calculating that. I don’t understand?