* To combine Mean ± SD. GET FILE='C:\Program Files\SPSS\World95.sav'. * Basic Tables (this table will be modified by the script). TABLES /FORMAT BLANK MISSING('.') /OBSERVATION calories /TABLES region > calories BY (STATISTICS) /STATISTICS count( ( F5.0 )) mean( ) stddev( ). * Basic Tables (this table will NOT be modified by the script because the last two columns are not Mean and Std Deviation . TABLES /FORMAT BLANK MISSING('.') /OBSERVATION calories /TABLES region > calories BY (STATISTICS) /STATISTICS count( ( F5.0 )) mean( ) stddev( ) median(). SCRIPT "C:\temp\CombineMeanAndSD.SBS".