Jump to content
  • 0

Leeftijd berekenen


Faay

Question

Om de leeftijd te berekenen gebruik ik:

GetAsText ( Year ( Get ( CurrentDate ) )  - Year ( C_Geboortejaar ) - If ( Get ( CurrentDate ) <  Date ( Month ( C_Geboortejaar ) ; Day ( C_Geboortejaar  ) ; Year ( Get ( CurrentDate ) ) ) ; 1 ; 0 ) ) & " Jaar, " & GetAsText ( Mod ( Month ( Get ( CurrentDate ) ) - Month ( C_Geboortejaar ) + 12 - If ( Day ( Get ( CurrentDate ) ) < Day ( C_Geboortejaar ) ; 1 ; 0 ) ; 12 ) ) & " Maanden, " & GetAsText ( Day ( Get ( CurrentDate ) ) - Day ( C_Geboortejaar  )  + If ( Day ( Get ( CurrentDate ) )  ≥ Day ( C_Geboortejaar   ) ; 0 ; If ( Day ( Get ( CurrentDate ) - Day ( Get ( CurrentDate ) ) ) < Day ( C_Geboortejaar  ) ; Day ( C_Geboortejaar ) ; Day ( Get ( CurrentDate ) - Day ( Get ( CurrentDate ) ) ) ) ) ) & " Dagen "

 

Maar nu wil ik berekenen hoe oud iemand geworden is die reeds overleden is. Ook met jaren, maanden en dagen.

Ik heb geprobeerd om alle (Get (CurrentDate)) te vervangen door het veld (Jaar van Overlijden), maar dat werkt niet.

Zie ik iets over het hoofd?

Bedankt voor het meedenken.

Link to comment

4 answers to this question

Recommended Posts

  • 0

Ik gebruik deze CF:

FullAge ( startDate ; endDate )

Let ( [ 

	dd = endDate ; 
	dob = startDate ; 

	ld = Day ( Date ( Month ( dd ) ; 0 ; Year ( dob ) ) ) ; 
	dy = Day ( dd ) - Day ( dob ) ; 
	mo = Month ( dd ) - Month ( dob ) - If ( dy < 0 ; 1 ) ; 
	yr = Year ( dd ) - Year ( dob ) ; 
                                                   
	years = yr + Case ( mo < 0 ; -1 ) ; 
	months = mo + If ( mo < 0 ; 12 ) ; 
	days = dy + If ( dy < 0 ; ld ) 

] ; 

	Substitute ( 
		If ( dd ≥ dob and dob > 0 ; 
			List ( 
				If ( Years ; Years & " jaar" ) ;  
				If ( months ; Months & " maand" & If ( months > 1 ; "en" ) ) ; 
				If ( days ; days & " dag" & If ( days > 1 ; "en" ) ) 
			)
		) ; 
	[ ¶ ; " " ] )

)

 

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...