Since SPSS is getting worse with every release, I did some R experiments (now that I’ll probably never need it anymore). My first ANOVA with a dataset included in R:
data("LifeCycleSavings")
head(LifeCycleSavings)
g <- lm(sr ~ pop15, LifeCycleSavings)
anova(g)
This should work out of the box like that.