Independence in Activities of Daily Living Variables

Only the bold italicized questions are used in the computation of the Katz score employing the algorithm described following the table.

VariableData TypeKatz ElementsAllowable Codes
q11fsintegerWalking across a small room? (TRANSFERING)
1No Help
2Help
3Unable
8Don't Know
9Refusal
NullMissing
q11afsintegerIs this with help from a person, or special equipment, or both?
1Person
2Special equipment
3Both
8Don't Know
9Refusal
NullMissing
q12fsintegerBathing, either a sponge bath, tub bath or shower? (BATHING)
1No Help
2Help
3Unable
8Don't Know
9Refusal
NullMissing
q12afsintegerIs this with help from a person, or special equipment, or both?
1Person
2Special equipment
3Both
8Don't Know
9Refusal
NullMissing
q13fsintegerPersonal grooming, like brushing hair, brushing teeth, or washing your face?
1No Help
2Help
3Unable
8Don't Know
9Refusal
NullMissing
q13afsintegerIs this with help from a person, or special equipment, or both?
1Person
2Special equipment
3Both
8Don't Know
9Refusal
NullMissing
q14fsintegerDressing, like putting on a shirt, buttoning and zipping, or putting on shoes? (DRESSING)
1No Help
2Help
3Unable
8Don't Know
9Refusal
NullMissing
q14afsintegerIs this with help from a person, or special equipment, or both?
1Person
2Special equipment
3Both
8Don't Know
9Refusal
NullMissing
q15fsintegerEating, like holding a fork, cutting food, or drinking from a glass? (FEEDING)
1No Help
2Help
3Unable
8Don't Know
9Refusal
NullMissing
q15afsintegerIs this with help from a person, or special equipment, or both?
1Person
2Special equipment
3Both
8Don't Know
9Refusal
NullMissing
q16fsintegerGetting from a bed to a chair? (TRANSFERING)
1No Help
2Help
3Unable
8Don't Know
9Refusal
NullMissing
q16afsintegerIs this with help from a person, or special equipment, or both?
1Person
2Special equipment
3Both
8Don't Know
9Refusal
NullMissing
q17fsintegerUsing the toilet? (TOILETING)
1No Help
2Help
3Unable
8Don't Know
9Refusal
NullMissing
q17afsintegerIs this with help from a person, or special equipment, or both?
1Person
2Special equipment
3Both
8Don't Know
9Refusal
NullMissing
Subjects are asked if they require help performing activities that are encountered in daily life. Only the bold italicized questions are use in the computation of the score employing the algorithm described below.

katz Algorithm (Baseline Only)

All "Don't know" and "Refusals" are converted to missing = Null.
All six questions must be answered in order to calculate the score.


if (q11fs, q12fs, q14fs, q15fs, q16fs, q16fs) not missing and not null then {
      katz = 0
      katz = katz + sum( (q11fs != 1) + (q12fs != 1) + (q14fs != 1) + (q15fs != 1) + (q16fs != 1) + (q17fs != 1) )
      }

'!=' operator translates 'not equal to'. If the logical condition is true, the expression evaluates to '1' else to '0'.