Age: Difference between revisions
Jump to navigation
Jump to search
Ttenbergen (talk | contribs) No edit summary |
|||
Line 1: | Line 1: | ||
{{Reporting Indicators | |||
|description=See page | |||
|Program=Critical Care and Medicine | |||
|indicator_start_date=1988-07-11 | |||
|indicator_name={{PAGENAME}} | |||
|program=Critical Care and Medicine | |||
}} | |||
{{Data_element | {{Data_element | ||
| field_name = age | | field_name = age | ||
Line 9: | Line 16: | ||
| data_element_sort_index = 3 | | data_element_sort_index = 3 | ||
}} | }} | ||
Age is part of the [[APACHE_Scoring_table#Age_Points|APACHE II score]] for Critical Care and [[ALERT Scale]] used in Medicine. | Age is part of the [[APACHE_Scoring_table#Age_Points|APACHE II score]] for Critical Care and [[ALERT Scale]] used in Medicine. |
Revision as of 15:38, 1 December 2021
See page
Indicators | |
Indicator: | Age |
Created/Raw: | not stated |
Program: | Critical Care and Medicine |
Start Date: | 1988-07-11 |
End Date: | |
Reports: | Critical Care Program Quality Indicator Report, Directors Quarterly and Annual Report (Medicine), STB ICCS Mortality |
Data Element (edit) | |
Field Name: | age |
CCMDB Label: | not stated |
CCMDB tab: | not stated |
Table: | Created_Variables_Common table, Created_Variables_CC table |
Data type: | number |
Length: | |
Program: | Med and CC |
Created/Raw: | Created |
Start Date: | 1988-07-11 |
End Date: | 2300-01-01 |
Sort Index: | 3 |
The number of years between Date of Birth and the last birthday prior to or on (Accept DtTm if applicable, Arrive DtTm otherwise).
Age is part of the APACHE II score for Critical Care and ALERT Scale used in Medicine.
Function to calculate Age
- Both formula yields the same AGE values.
ACCESS
- CCMDB_Age = excel.WorksheetFunction.Floor(CInt(DateDiff("yyyy", DOB, Adm)) + Int(Format(Adm, "mmdd") < Format(DOB, "mmdd")), 1)
- where Birth = Date of Birth and Adm = (Accept DtTm if available, Arrive DtTm otherwise)
SAS
- Age=floor((intck('month',Birth,R_Adm) - (day(R_Adm) < day(Birth))) / 12)
- where Birth = Date of Birth and R_Adm = (Accept DtTm if available, Arrive DtTm otherwise)