You can get a K-S or Shapiro-Wilk normality test with one group variable (column) and one measure variable via Analyze > Descriptive Statistics > Explore. Use the Plots subdialog or syntax like this
EXAMINE VARIABLES=educ BY minority
/PLOT NPPLOT
/COMPARE GROUPS.
You might also be interested in the two-group Q-Q plot (Analyze > Descriptive Statistics > Two Variable or Group Q-Q Plot) or in syntax
SPSSINC QQPLOT2 VARIABLES=salary BY=minority.
It does not provide test statistics, but the Q-Q plot gives a more complete description of the differences.
SPSSINC QQPLOT is an extension command that can be installed via the Extensions > Extension Hub menu. It requires the appropriate version of R and the R Configuration file. The latter can be installed from the Extension Hub.
#SPSSStatistics#Support#SupportMigration