I like using the list command in spss but it can get confusing when it prints in the output the number that corresponds to the category and not the label.
For example:
Data list list
/ id var1 var2.
BEGIN DATA.
1, 2, 2
2, 2, 2
3, 1, 1
END DATA.
LIST.
VALUE LABELS VAR1 1 'YES' 2 'NO'.
VALUE LABELS VAR2 1 'YES' 2 'NO'.
LIST.
The output of LIST is the same after I attach value labels. I would like to print the value labels, rather than the value itself Any help will be very appreciated