Open a new instance of SPSS. Copy and paste the syntax below into a
syntax window the run it.
if this is not what you are asking please give more detail.
data list list /myDate(adate8) Result(f2).
begin data
11.01.99 20
11.01.99 21
11.01.99 19
12.01.99 5
12.01.99 6
12.01.99 5
end data.
means VARIABLES=result by myDate /cells=all.
frequencies vars = mydate.
Art Kendall
Social Research Consultants
> Date Result
> 11.01.99 20
[quoted text clipped - 3 lines]
> 12.01.99 6
> 12.01.99 5
WimN - 23 Feb 2010 18:33 GMT
> Open a new instance of SPSS. Copy and paste the syntax below into a
> syntax window the run it.
[quoted text clipped - 22 lines]
> > 12.01.99 6
> > 12.01.99 5
You don't need syntax for that. Just choose "split file..." from the
"Data" menu, choose either "Compare groups" or "Organize output by
groups" and define the "Date" variable as the one to base the groups
on.
From that point onward all stats will be calculated separately for
each date, until you lift the "split file...".
Good luck