*First, we'll create value labels to make it easier to interpret the table VALUE LABELS off_code '09B' 'Negligent Homicide'/ weapon1 weapon2 weapon3 '11' 'Firearm' '12' 'Handgun' '13' 'Rifle' '14' 'Shotgun' '15' 'Other Firearm' '20' 'Knife/Cutting Instrument' '30' 'Blunt Object' '35' 'Motor Vehicle' '40' 'Personal Weapons' '50' 'Poison' '60' 'Explosives' '65' 'Fire/Incendiary Device' '70' 'Drugs/Narcotics/Sleeping Pills' '85' 'Asphyxiation' '90' 'Other' '95' 'Unknown' '99' 'None'. *Now we need to select the Negligent Manslaughter offenses USE ALL. COMPUTE filter_$=(off_code = '09B'). VARIABLE LABEL filter_$ "off_code = '09B' (FILTER)". VALUE LABELS filter_$ 0 'Not Selected' 1 'Selected'. FORMAT filter_$ (f1.0). FILTER BY filter_$. EXECUTE . *Finally, we need to create a table showing the weapons used for these offenses FREQUENCIES VARIABLES=weapon1 weapon2 weapon3 /ORDER= ANALYSIS .