Computing EQ-5D-5L index values with SPSS using the United States (US) Pickard value set Version 1.1 (Updated 16/11/2020) The variables for the 5 dimensions of the EQ-5D-5L descriptive system should be named 'mobility', 'selfcare', 'activity', 'pain', and 'anxiety'. If they are given different names the syntax code below will not work properly. The 5 variables should contain IF (mobility=1) disut_mo=0. IF (mobility=2) disut_mo=0.096. IF (mobility=3) disut_mo=0.122. IF (mobility=4) disut_mo=0.237. IF (mobility=5) disut_mo=0.322. IF (selfcare=1) disut_sc=0. IF (selfcare=2) disut_sc=0.089. IF (selfcare=3) disut_sc=0.107. IF (selfcare=4) disut_sc=0.220. IF (selfcare=5) disut_sc=0.261. IF (activity=1) disut_ua=0. IF (activity=2) disut_ua=0.068. IF (activity=3) disut_ua=0.101. IF (activity=4) disut_ua=0.255. IF (activity=5) disut_ua=0.255. IF (pain=1) disut_pd=0. IF (pain=2) disut_pd=0.060. IF (pain=3) disut_pd=0.098. IF (pain=4) disut_pd=0.318. IF (pain=5) disut_pd=0.414. IF (anxiety=1) disut_ad=0. IF (anxiety=2) disut_ad=0.057. IF (anxiety=3) disut_ad=0.123. IF (anxiety=4) disut_ad=0.299. IF (anxiety=5) disut_ad=0.321. Compute disut_total= disut_mo +disut_sc +disut_ua +disut_pd +disut_ad. Compute EQindex = 1-disut_total. Formats EQindex(F8.3). execute.