Reputation: 31
I have this code.
Select if (syear=1995 and Niedriglohn=1).
Frequencies NiedriglohnDauer.
I want to have the Frequencies of Niedriglohndauer for the year 1995 to 2020 each if Niedriglohn=1.
Upvotes: 2
Views: 27
Reputation: 11360
This will do it:
Select if Niedriglohn=1.
sort cases by syear.
split file by syear.
Frequencies NiedriglohnDauer.
split file off.
Upvotes: 1