/********************************************************************************/; /* Program: cps9293.sas */; /* Date: June 2021 */; /* */; /* Purpose: SAS program to create permanent SAS datasets from the 1992-93 survey*/; /* data. The program creates one permanent data set for each of the */; /* three surveys (September, January, May). */; /* */; /* Notes: The program is set up to read and write the data to/from the */; /* 'data' subdirectory. The Filename and Libname statements may need */; /* to be modified to match where the data are stored. */; /* */; /* The weights on the September 1992, January 1993 and May 1993 files */; /* are 1980 based. The 1990 weights are available from the TUS-CPS */; /* website. Information on how to merge the 1990 weights is included */; /* with the data. */; /* */; /* Modifications */; /********************************************************************************/; Filename CPSSep92 "data\cpssep92.tb2" Lrecl=504 RECFM=f; Filename CPSJan93 "data\cpsjan93.dat" Lrecl=504 RECFM=f; Filename CPSMay93 "data\cpsmay93.dat" Lrecl=504 RECFM=f; Libname CPS "data\."; Title "September 1992, January 1993 and May 1993"; %Macro CPS9293(Survey); Data CPS.CPS&Survey; Infile CPS&Survey pad missover; Input @003 H_Month 2. @005 H_Year 1. @006 H_HHNUM 1. @007 H_CPSCHK 1. @008 H_DAYCMP 1. @009 H_LIVQRT 2. @011 H_FARM 1. @012 H_TYPINT 1. @013 H_RESPNM 1. @014 H_AREASN 1. @015 H_ARACE 1. @016 H_TYPEBC 2. @018 H_SEASON 1. @019 H_OCCINT 1. @020 H_INTRV1 2. @022 H_INTRV2 1. @023 H_INTRV3 1. @024 H_STATUS 1. @025 H_TENURE 1. @026 H_FAMINC 2. @028 H_TELHHD 1. @029 H_TELAVL 1. @030 H_TELINT 1. @031 H_PRSCNT 1. @032 H_TELCNT 1. @033 H_TIMINT 1. @034 H_HHTYPE 1. @035 H_MIS 1. @036 H_NUMPER 2. @038 H_TYPE 1. @039 H_TYPERP 1. @040 H_NUMFAM 2. @042 H_HHDSEQ 2. @044 H_MSTIND 5. @049 H_HHWGT 9. @058 HXTENURE 1. @059 HXFAMINC 1. @060 HXARACE 1. @061 HXCPSCHK 1. @062 HXDAYCMP 1. @063 HXHHNUM 1. @064 HXINTRV 1. @065 HXLIVQRT 1. @066 HXOCCINT 1. @067 HXRESPNM 1. @068 HXSEASON 1. @069 HXSTATUS 1. @070 HXAREASN 1. @071 HXTYPEBC 1. @072 HXTELHHD 1. @073 HXTELAVL 1. @074 HXTELINT 1. @075 HXPRSCNT 1. @076 HXTIMINT 1. @077 HXTELCNT 1. @078 HG_REG 1. @079 HG_ST60 2. @081 HG_STRN 2. @083 HG_FIPS 2. @085 HG_MSAS 1. @086 HG_MSAC 4. @090 HG_PMSA 2. @092 HG_MSAR 3. @095 HG_MSSZ 2. @097 HG_CMSA 2. @099 H_METSTA 1. @100 H_INDVCC 1. @101 H_RECTYP 1. @102 H_ID $Char12. @114 A_LINENO 2. @116 A_RRP 2. @118 A_PARENT 2. @120 A_AGE 2. @122 A_MARITL 1. @123 A_SPOUSE 2. @125 A_SEX 1. @126 A_VET 1. @127 A_HGA 2. @130 A_RACE 1. @131 A_MAJACT 1. @132 A_ANYWK 1. @133 A_HRS1 2. @135 A_HRSCHK 1. @136 A_USLFT 1. @137 A_FTREAS 2. @139 A_LOSTIM 1. @140 A_OVRTIM 1. @141 A_JOBABS 1. @142 A_WHYABS 1. @143 A_PAYABS 1. @144 A_FTABS 1. @145 A_LKWK 1. @146 A_MTHD1 1. @147 A_MTHD2 1. @148 A_MTHD3 1. @149 A_MTHD4 1. @150 A_MTHD5 1. @151 A_MTHD6 1. @152 A_MTHD7 1. @153 A_WHYLK 1. @154 A_WKSLK 2. @156 A_LKFTPT 1. @157 A_AVAIL 1. @158 A_WHYNA 1. @159 A_WHENLJ 1. @160 A_IND 3. @163 A_OCC 3. @166 A_CLSWKR 1. @167 A_CHKWJ 1. @168 A_NLFROT 1. @169 A_NLFLJ 1. @170 A_WHYLFT 1. @171 A_WANTJB 1. @172 A_WHYNL1 1. @173 A_WHYNL2 1. @174 A_WHYNL3 1. @175 A_WHYNL4 1. @176 A_WHYNL5 1. @177 A_WHYNL6 1. @178 A_WHYNL7 1. @179 A_WHYNL8 1. @180 A_WHYNL9 1. @181 A_WHYNLA 1. @182 A_WHYNLB 1. @183 A_INTEND 1. @184 A_EARNRT 1. @185 A_USLHRS 2. @187 A_HRLYWK 1. @188 A_UNMEM 1. @189 A_UNCOV 1. @190 A_ENRCHK 1. @191 A_ENRLW 1. @192 A_HSCOL 1. @193 A_FTPT 1. @194 A_REORGN 2. @196 A_EXPRRP 2. @198 A_LFSR 1. @199 A_UNTYPE 1. @200 A_NLFREA 2. @202 A_WKSTAT 1. @203 A_EXPLF 1. @204 A_WKSCH 1. @205 A_CIVLF 1. @206 A_FTLF 1. @207 A_EMPHRS 2. @209 A_PTHRS 2. @211 A_PTREA 2. @213 A_ABSREA 2. @215 A_AGNA 1. @216 A_MJIND 2. @218 A_DTIND 2. @220 A_MJOCC 2. @222 A_DTOCC 2. @224 A_ERNEL 1. @225 A_IOELIG 1. @226 A_DSCWK 1. @227 A_DTCLWK 2. @229 A_EMP 1. @230 A_NAGWS 1. @231 A_RCOW 1. @232 A_NCAGPW 1. @233 A_HERNTP 4. @237 A_WERNTP 4. @241 A_HERNTF 1. @242 A_WERNTF 1. @243 A_FERNTP 4. @247 A_FERNTF 1. @248 A_FNLWGT 8. @256 A_ECRNLW 8. @264 A_VETWGT 8. @272 A_FAMNUM 2. @274 A_FAMTYP 1. @275 A_FAMREL 1. @276 A_PFNOCD 1. @277 A_PFPRCD 2. @279 A_PFREL 1. @280 A_PFSIZE 2. @282 A_PFHHAG 1. @283 A_LFESM 1. @284 A_LFESF 1. @285 A_PFWS 1. @286 A_PFFTPT 1. @287 A_PFEARN 4. @291 A_PFNOER 1. @292 A_PFNOEM 1. @293 A_PFNOUN 1. @294 A_FAMWGT 8. @302 A_FMEWGT 8. @310 AXLINENO 1. @311 AXRRP 1. @312 AXPARENT 1. @313 AXAGE 1. @314 AXMARITL 1. @315 AXSPOUSE 1. @316 AXSEX 1. @317 AXVET 1. @318 AXHGA 1. @320 AXRACE 1. @321 AXORIGIN 1. @322 AXLFSR 1. @323 AXMAJACT 1. @324 AXANYWK 1. @325 AXHRS 1. @326 AXHRSCHK 1. @327 AXUSLFT 1. @328 AXFTREAS 1. @329 AXLOSTIM 1. @330 AXOVRTIM 1. @331 AXJOBABS 1. @332 AXWHYABS 1. @333 AXPAYABS 1. @334 AXFTABS 1. @335 AXLKWK 1. @336 AXMTHD 1. @337 AXWHYLK 1. @338 AXWKSLK 1. @339 AXLKFTPT 1. @340 AXAVAIL 1. @341 AXWHYNA 1. @342 AXWHENLJ 1. @343 AXIND 1. @344 AXOCC 1. @345 AXCLSWKR 1. @346 AXNLFLJ 1. @347 AXWHYLFT 1. @348 AXWANTJB 1. @349 AXWHYNL 1. @350 AXINTEND 1. @351 AXUSLHRS 1. @352 AXHRLYWK 1. @353 AXHRSPAY 1. @354 AXGRSWK 1. @355 AXUNMEM 1. @356 AXUNCOV 1. @357 AXENRCHK 1. @358 AXENRLW 1. @359 AXHSCOL 1. @360 AXFTPT 1. @361 A_S32 1. @362 A_S33 3. @365 A_S33A 1. @366 A_S34 1. @367 A_S35 1. @368 A_S36 3. @371 A_S36A 1. @372 A_S37 2. @374 A_S37A 1. @375 A_S38 3. @378 A_S38A 1. @379 A_S39 1. @380 A_S40 4. @384 A_S40A 1. @385 A_S40B 1. @386 A_S41 3. @389 A_S41A 1. @390 A_S42 3. @393 A_S42A 1. @394 A_S43 3. @397 A_S43A 1. @398 A_S44 1. @399 A_S45 1. @400 A_S46 2. @402 A_S46A 1. @403 A_S47 1. @404 A_S48 1. @405 A_S49 1. @406 A_S50 1. @407 A_S51 1. @408 A_S52 1. @409 A_S53 1. @410 A_S54 1. @411 A_S55 1. @412 A_S56 4. @416 A_S56A 1. @417 A_S56B 1. @418 A_S57 3. @421 A_S57A 1. @422 A_S58 3. @425 A_S58A 1. @426 A_S59 4. @430 A_S59A 1. @431 A_S59B 1. @432 A_S60 1. @433 A_S61 1. @434 A_S62 1. @435 A_S62A 1. @436 A_S62B 1. @437 A_S62C 1. @438 A_S62D 1. @439 A_S63 1. @440 A_S63A 1. @441 A_S63B 1. @442 A_S63C 1. @443 A_S63D 1. @444 A_S64 1. @445 A_S65 1. @446 A_S66 1. @447 A_S67 2. @449 A_S68 1. @450 A_S69 1. @451 A_S70 1. @452 A_S71 1. @453 A_S72A 1. @454 A_S72B 1. @455 A_S72C 1. @456 A_S72D 1. @457 A_S72E 1. @458 A_S72F 1. @459 A_S73 1. @460 A_S74 1. @461 A_S75 1. @462 A_S76 1. @463 A_S77 1. @464 A_S78 2. @466 A_S79 1. @467 A_S80 1. @468 A_S81A 1. @469 A_S81B 2. @471 INTRVIEW 1. @472 SMOKSTAT 1. @473 A_NRFAC 8. @481 A_SRFAC 8. @489 A_NRWGT 8. @497 A_SRWGT 8.; H_HHWGT=H_HHWGT/100; If A_FNLWGT^=. Then A_FNLWGT=A_FNLWGT/100; If A_ECRNLW^=. Then A_ECRNLW=A_ECRNLW/100; If A_VETWGT^=. Then A_VETWGT=A_VETWGT/100; If A_NRFAC^=. Then A_NRFAC=A_NRFAC/1000000; If A_SRFAC^=. Then A_SRFAC=A_SRFAC/1000000; If A_NRWGT^=. Then A_NRWGT=A_NRWGT/100; If A_SRWGT^=. Then A_SRWGT=A_SRWGT/100; Label H_MONTH = "Month of survey" H_YEAR = "Year of survey - last digit" H_HHNUM = "Household number" H_CPSCHK = "Item 1 - Interviewer check item" H_DAYCMP = "Day interview complete" H_LIVQRT = "Item 4 - Type of living quarters" H_FARM = "Farm def'n - edited using urban/rural code" H_TYPINT = "Item 13 - Type interview" H_RESPNM = "Item 12 - Line no. HHLD resp." H_AREASN = "Item 14 - Reason for type A" H_ARACE = "Item 14 - Race for type A" H_TYPEBC = "Item 15 - Type B/C" H_SEASON = "Item 16 - Seasonal status" H_OCCINT = "Item 17 - This unit is intended for occupancy" H_INTRV1 = "Interviewer code" H_INTRV2 = "Interviewer Code - digit 2" H_INTRV3 = "Interviewer Code - digit 3" H_STATUS = "Item 27B - HHLD status change - replacement household" H_TENURE = "Tenure" H_FAMINC = "Family income" H_TELHHD = "Telephone in household" H_TELAVL = "Telephone available" H_TELINT = "Telephone interview acceptable" H_PRSCNT = "Item 30 - Number of contacts - actual and attempted -- personal" H_TELCNT = "Item 30 - Number of contacts - actual and attempted -- telephone" H_TIMINT = "Item 31 - Time of interview" H_HHTYPE = "Type of household" H_MIS = "Month in sample" H_NUMPER = "Number of persons in household" H_TYPE = "Household type" H_TYPERP = "Type of reference person" H_NUMFAM = "Number of families in HHLD" H_HHDSEQ = "Householder sequence number" H_MSTIND = "Master segment tape index" H_HHWGT = "Household weight" HXTENURE = "Allocation flag" HXFAMINC = "Allocation flag" HXARACE = "Allocation flag" HXCPSCHK = "Allocation flag" HXDAYCMP = "Allocation flag" HXHHNUM = "Allocation flag" HXINTRV = "Allocation flag" HXLIVQRT = "Allocation flag" HXOCCINT = "Allocation flag" HXRESPNM = "Allocation flag" HXSEASON = "Allocation flag" HXSTATUS = "Allocation flag" HXAREASN = "Allocation flag" HXTYPEBC = "Allocation flag" HXTELHHD = "Allocation flag" HXTELAVL = "Allocation flag" HXTELINT = "Allocation flag" HXPRSCNT = "Allocation flag" HXTIMINT = "Allocation flag" HXTELCNT = "Allocation flag" HG_REG = "Region" HG_ST60 = "1960 Census state code (first digit = geog. division code)" HG_STRN = "1980 State rank" HG_FIPS = "FIPS State code" HG_MSAS = "MSA status" HG_MSAC = "MSA or PMSA FIPS code" HG_PMSA = "PMSA rank" HG_MSAR = "MSA or CMSA rank" HG_MSSZ = "MSA size" HG_CMSA = "CMSA" H_METSTA = "Metropolitan status" H_INDVCC = "Individual central city identifier" H_RECTYP = "Record type" H_ID = "Unique household identifer" A_LINENO = "Item 18A - Line number" A_RRP = "Item 18B - Relationship to reference person" A_PARENT = "Item 18C - Parent's line number" A_AGE = "Item 18D - Age" A_MARITL = "Item 18E - Marital status" A_SPOUSE = "Item 18F - Spouse's line number" A_SEX = "Item 18G - Sex" A_VET = "Item 18G - Veteran status" A_HGA = "Item 18H - Educational attainment" A_RACE = "Item 18J - Race" A_MAJACT = "Item 19 - What was ... doing most of last week" A_ANYWK = "Item 20 - Did ... do any work at all last week, not counting work around the house" A_HRS1 = "Item 20a - How many hours did ... work last week at all jobs" A_HRSCHK = "Item 20B - Interviewer check of item 20A" A_USLFT = "Item 20C - Does ... usually work 35 hours or more a week at this job (Part 1)" A_FTREAS = "Item 20C - Does ... usually work 35 Hours or more a week at this job (Part 2)" A_LOSTIM = "Item 20D - Did ... lose any time or take any time off last week for any reason such as illness, holiday or slack work" A_OVRTIM = "Item 20E - Did ... work any overtime or at more than one job last week" A_JOBABS = "Item 21 - Did ... have a job or business from which he/she was temporarily absent or on layoff last week" A_WHYABS = "Item 21A - Why was ... absent from work last week" A_PAYABS = "Item 21B - Is ... receiving wages or salary for any of the time off last week" A_FTABS = "Item 21C - Does ... usually work 35 hours or more a week at this job" A_LKWK = "Item 22 - Has ... been looking for work during the past 4 weeks" A_MTHD1 = "Item 22A - What has ... been doing in the last 4 weeks to find work? Checked with public employment agency" A_MTHD2 = "Item 22A - What has ... been doing in the last 4 weeks to find work? Checked with private employment agency" A_MTHD3 = "Item 22A - What has ... been doing in the last 4 weeks to find work? Checked with employer directly" A_MTHD4 = "Item 22A - What has ... been doing in the last 4 weeks to find work? Checked with friends or relatives" A_MTHD5 = "Item 22A - What has ... been doing in the last 4 weeks to find work? Placed or answered ads" A_MTHD6 = "Item 22A - What has ... been doing in the last 4 weeks to find work? Nothing" A_MTHD7 = "Item 22A - What has ... been doing in the last 4 weeks to find work? Other" A_WHYLK = "Item 22B - Why did ... start looking for work was it because ..." A_WKSLK = "Item 22C - 1) How many weeks has ... been looking for work 2) how many weeks ago did ... start looking 3) how many weeks ago was ... laid off" A_LKFTPT = "Item 22D - Has ... been looking for full-time or part-time work" A_AVAIL = "Item 22E1 - Could ... have taken a job if one had been offered" A_WHYNA = "Item 22E2 - Why not" A_WHENLJ = "Item 22F - When did ... last work at a full-time job or business lasting 2 consecutive weeks or more" A_IND = "Item 23B - Industry" A_OCC = "Item 23C - Occupation" A_CLSWKR = "Item 23E - Class of worker" A_CHKWJ = "Item 23F - Interviewer check item" A_NLFROT = "Item 24 - Interviewer check item" A_NLFLJ = "Item 24A - When did ... last work for pay at a regular job or business, either full-time or part-time" A_WHYLFT = "Item 24B - Why did ... leave that job" A_WANTJB = "Item 24C - Does ... want a regular job now, either full or part-time" A_WHYNL1 = "Item 24D - What are the reasons ... is not looking for work: Believes no work available" A_WHYNL2 = "Item 24D - What are the reasons ... is not looking for work: Couldn't find any work" A_WHYNL3 = "Item 24D - What are the reasons ... is not looking for work: Lacks nec. schooling, etc." A_WHYNL4 = "Item 24D - What are the reasons ... is not looking for work: Employers think too young or too old" A_WHYNL5 = "Item 24D - What are the reasons ... is not looking for work: Other personal handicap in finding job" A_WHYNL6 = "Item 24D - What are the reasons ... is not looking for work: Can't arrange child care" A_WHYNL7 = "Item 24D - What are the reasons ... is not looking for work: Family responsibilities" A_WHYNL8 = "Item 24D - What are the reasons ... is not looking for work: In school or other training" A_WHYNL9 = "Item 24D - What are the reasons ... is not looking for work: Ill health" A_WHYNLA = "Item 24D - What are the reasons ... is not looking for work: Other" A_WHYNLB = "Item 24D - What are the reasons ... is not looking for work: Don't know" A_INTEND = "Item 24E - Does ... intend to look for work of any kind in the next 12 months" A_EARNRT = "Item 25 - Interviewer check item" A_USLHRS = "Item 25A - How many hours per week does ... usually work at this job" A_HRLYWK = "Item 25B - Is ... paid by the hour on this job" A_UNMEM = "Item 25E - On this job, is ... a member of a labor union or of an employee association similar to a union" A_UNCOV = "Item 25F - On this job, is ... covered by a union or employee association contract" A_ENRCHK = "Item 26 - Interviewer check item" A_ENRLW = "Item 26A1 - Last week was ... attending or enrolled in a high school, college or university" A_HSCOL = "Item 26A2" A_FTPT = "Item 26B - Is ... enrolled in school as a full-time or part-time student" A_REORGN = "Item 18K - Origin" A_EXPRRP = "Expanded relationship code" A_LFSR = "Labor force status recode" A_UNTYPE = "Reason for unemployment" A_NLFREA = "Current activity/reason not looking" A_WKSTAT = "Full/part-time status" A_EXPLF = "Experienced labor force employment" A_WKSCH = "Labor force by time worked or lost" A_CIVLF = "Civilian labor force" A_FTLF = "Full-time labor force" A_EMPHRS = "Reasons not at work or hours at work" A_PTHRS = "At work 1-34 hours by hours at work" A_PTREA = "Detailed reason for part-time" A_ABSREA = "Reason not at work and pay status" A_AGNA = "" A_MJIND = "Major industry code" A_DTIND = "Detailed industry code" A_MJOCC = "Major occupation code" A_DTOCC = "Detailed occupation code" A_ERNEL = "Earnings eligibility flag" A_IOELIG = "Industry and occupation eligibility flag" A_DSCWK = "Discouraged worker flag" A_DTCLWK = "Detailed class of worker" A_EMP = "Employed persons (excluding farm workers and private household workers)" A_NAGWS = "Non agricultural wage and salary workers" A_RCOW = "Class of worker recode" A_NCAGPW = "Nonagricultural private wage and salary workers (Except private household)" A_HERNTP = "Hourly earnings top code" A_WERNTP = "Weekly earnings top code" A_HERNTF = "Hourly earnings top code flag" A_WERNTF = "Weekly earnings top code flag" A_FERNTP = "Family earnings top code" A_FERNTF = "Family earnings top code flag" A_FNLWGT = "Adults final weight" A_ECRNLW = "Earnings/not in labor force weight" A_VETWGT = "Veteran's weight" A_FAMNUM = "Family number" A_FAMTYP = "Family type" A_FAMREL = "Family relationship" A_PFNOCD = "Number of own children < 18 in primary family" A_PFPRCD = "Presence of own children < 18 in primary family." A_PFREL = "Primary family relationship" A_PFSIZE = "Size of primary family" A_PFHHAG = "Age of primary family householder" A_LFESM = "Labor force and earner status (male) of husband of primary family or male householder" A_LFESF = "Labor force and earner status (female) of wife of primary family or female householder" A_PFWS = "Primary family earners wage and salary status (16+)" A_PFFTPT = "Usual full-time/part-time status of primary family earners (16+)" A_PFEARN = "Total weekly family earnings (for members 16+)" A_PFNOER = "Number of earners in primary family 16+" A_PFNOEM = "Number of employed in primary family 16+" A_PFNOUN = "Number of unemployed in primary family 16+" A_FAMWGT = "Family weight" A_FMEWGT = "Family earnings weight" AXLINENO = "Line number allocation flag" AXRRP = "Relationship to reference person allocation flag" AXPARENT = "Parent's line number allocation flag" AXAGE = "Age allocation flag" AXMARITL = "Marital status allocation flag" AXSPOUSE = "Spouse's line number allocation flag" AXSEX = "Sex allocation flag" AXVET = "Veteran status allocation flag" AXHGA = "Highest grade attended allocation flag" AXRACE = "Race allocation flag" AXORIGIN = "Origin allocation flag" AXLFSR = "Labor force status recode allocation flag" AXMAJACT = "Allocation flag A_MAJACT" AXANYWK = "Allocation flag A_ANYWK" AXHRS = "Allocation flag A_HRS" AXHRSCHK = "Allocation flag A_HRSCHK" AXUSLFT = "Allocation flag A_USLFT" AXFTREAS = "Allocation flag A_FTREAS" AXLOSTIM = "Allocation flag A_LOSTIM" AXOVRTIM = "Allocation flag A_OVRTIM" AXJOBABS = "Allocation flag A_JOBABS" AXWHYABS = "Allocation flag A_WHYABS" AXPAYABS = "Allocation flag A_PAYABS" AXFTABS = "Allocation flag A_FTABS" AXLKWK = "Allocation flag A_LKWK" AXMTHD = "Allocation flag A_MTHD" AXWHYLK = "Allocation flag A_WHYLK" AXWKSLK = "Allocation flag A_WKSLK" AXLKFTPT = "Allocation flag A_LKFTPT" AXAVAIL = "Allocation flag A_AVAIL" AXWHYNA = "Allocation flag A_WHYNA" AXWHENLJ = "Allocation flag A_WHENLJ" AXIND = "Allocation flag A_IND" AXOCC = "Allocation flag A_OCC" AXCLSWKR = "Allocation flag A_CLSWKR" AXNLFLJ = "Allocation flag A_NLFLJ" AXWHYLFT = "Allocation flag A_WHYLFT" AXWANTJB = "Allocation flag A_WANTJB" AXWHYNL = "Allocation flag A_WHYNL" AXINTEND = "Allocation flag A_INTEND" AXUSLHRS = "Allocation flag A_USLHRS" AXHRLYWK = "Allocation flag A_HRLYWK" AXHRSPAY = "Allocation flag A_HRSPAY" AXGRSWK = "Allocation flag A_GRSWK" AXUNMEM = "Allocation flag A_UNMEM" AXUNCOV = "Allocation flag A_UNCOV" AXENRCHK = "Allocation flag A_ENRCHK" AXENRLW = "Allocation flag A_ENRLW" AXHSCOL = "Allocation flag A_HSCOL" AXFTPT = "Allocation flag A_FTPT" A_S32 = "Has...smoked at least 100 cigarettes in his/her entire life?" A_S33 = "How old was...when he/she first started smoking cigarettes fairly regularly?" A_S33A = "How old was...when he/she first started smoking cigarettes fairly regularly?" A_S34 = "Does...now smoke cigarettes every day, some days, or not at all?" A_S35 = "Check item - who is responding to the supplement questions for this person?" A_S36 = "On the average, how many cigarettes do you now smoke a day?" A_S36A = "On the average, how many cigarettes do you now smoke a day?" A_S37 = "On how many of the past 30 days did you smoke cigarettes?" A_S37A = "On how many of the past 30 days did you smoke cigarettes?" A_S38 = "On the average, when you smoked, about how many cigarettes did you smoke a day" A_S38A = "On the average, when you smoked, about how many cigarettes did you smoke a day?" A_S39 = "Have you ever smoked cigarettes everyday for at least 6 months?" A_S40 = "About how long has it been since you last smoked cigarettes every day?" A_S40A = "Unit reported in item 40 is:" A_S40B = "About how long has it been since you last smoked cigarettes every day?" A_S41 = "When you last smoked every day, on average how many cigarettes did you smoke daily?" A_S41A = "When you last smoked every day, on average how many cigarettes did you smoke daily?" A_S42 = "What is the total number of years you smoked every day? Do not include any time you stayed off cigarettes for 6 months or longer." A_S42A = "What is the total number of years you smoked every day? Do not include any time you stayed off cigarettes for 6 months or longer." A_S43 = "What is the total number of years you have smoked every day? Do not include any time you stayed off cigarettes for 6 months or longer." A_S43A = "What is the total number of years you have smoked every day? Do not include any time you stayed off cigarettes for 6 months or longer." A_S44 = "Have you ever stopped smoking for one day or longer because you were trying to quit smoking?" A_S45 = "During the past 12 months, have you stopped smoking for one day or longer because you were trying to quit smoking?" A_S46 = "How many times during the past 12 months have you stopped smoking for one day or longer because you were trying to quit smoking?" A_S46A = "How many times during the past 12 months have you stopped smoking for one day or longer because you were trying to quit smoking?" A_S47 = "In the past year have you seen a medical doctor?" A_S48 = "During the past year, did any medical doctor advise you to stop smoking?" A_S49 = "Has a medical doctor ever advised you to stop smoking?" A_S50 = "In the past year have you seen a dentist?" A_S51 = "During the past year, did any dentist advise you to stop smoking?" A_S52 = "Has a dentist ever advised you to stop smoking?" A_S53 = "Are you seriously considering stopping within the next 6 months?" A_S54 = "Are you planning to stop within the next 30 days?" A_S55 = "Have you ever smoked cigarettes every day for at least 6 months?" A_S56 = "About how long has it been since you last smoked cigarettes every day?" A_S56A = "About how long has it been since you last smoked cigarettes every day?" A_S56B = "Unit reported in Item S56 is:" A_S57 = "When you last smoked every day, on average how many cigarettes did you smoke daily?" A_S57A = "When you last smoked every day, on average how many cigarettes did you smoke daily?" A_S58 = "What is the total number of years you smoked every day? Do not include any time you stayed off cigarettes for 6 months or longer." A_S58A = "What is the total number of years you smoked every day? Do not include any time you stayed off cigarettes for 6 months or longer." A_S59 = "About how long has it been since you completely stopped smoking cigarettes?" A_S59A = "About how long has it been since you completely stopped smoking cigarettes?" A_S59B = "Unit reported in item 59 is:" A_S60 = "Check item" A_S61 = "Around this time 12 months ago, were you smoking cigarettes every day, some days, or not at all?" A_S62 = "Has...ever used pipes, cigars, chewing tobacco, or snuff on a regular basis?" A_S62A = "Which ones? Pipes" A_S62B = "Which ones? Cigars" A_S62C = "Which ones? Chewing Tobacco" A_S62D = "Which ones? Snuff" A_S63 = "Does...now use (pipes/cigars/chewing tobacco/snuff)?" A_S63A = "Which ones? Pipes" A_S63B = "Which ones? Cigars" A_S63C = "Which ones? Chewing Tobacco" A_S63D = "Which ones? Snuff" A_S64 = "Who is responding to the supplement questions for this person?" A_S65 = "Check item" A_S66 = "Check item" A_S67 = "Which of these best describes the area in which you work most of the time?" A_S68 = "Does your place of work have an official policy that restricts smoking in any way?" A_S69 = "Which of these best describes your place of work's smoking policy for indoor public or common areas such as lobbies, rest rooms, and lunch rooms?" A_S70 = "Which of these best describes your place of work's smoking policy for work areas?" A_S71 = "Within the past 12 months, has your employer offered any stop smoking program or other help to employees who want to quit smoking?" A_S72A = "In restaurants, do you think that smoking should be allowed in all areas, in some areas, or not allowed at all?" A_S72B = "In hospitals, do you think that smoking should be allowed in all areas, in some areas, or not allowed at all?" A_S72C = "In indoor work areas, do you think that smoking should be allowed in all areas, in some areas, or not allowed at all?" A_S72D = "In bars and cocktail lounges, do you think that smoking should be allowed in all areas, in some areas, or not allowed at all?" A_S72E = "In indoor sporting events, do you think that smoking should be allowed in all areas, in some areas, or not allowed at all?" A_S72F = "In indoor shopping malls, do you think that smoking should be allowed in all areas, in some areas, or not allowed at all?" A_S73 = "Which statement best describes the rules about smoking in your home?" A_S74 = "Do you think smoking is a habit, an addiction, neither or both?" A_S75 = "In your opinion, how easy is it for minors to buy cigarettes and other tobacco products in your community?" A_S76 = "Do you think that giving away free samples by tobacco companies should be:" A_S77 = "Do you think advertising of tobacco products should be:" A_S78 = "Check item - supplement interview with:" A_S79 = "Number of callbacks" A_S80 = "Language of interview" A_S81A = "Type of supplement interview" A_S81B = "Date of interview" INTRVIEW = "Interview status recode" SMOKSTAT = "Smoker recode" A_NRFAC = "Nonresponse factor" A_SRFAC = "Self-response factor" A_NRWGT = "Nonresponse weight" A_SRWGT = "Self-response weight"; %Mend CPS9293; %CPS9293(sep92); run; %CPS9293(jan93); run; %CPS9293(may93); run;