This seems different from what I thought you were asking about. The entries in the Chi-squared dialog box are the proportions of the categories. From the dialog help...
Expected Values. By default, all categories have equal expected values. Categories can have user-specified expected proportions. Select Values, enter a value that is greater than 0 for each category of the test variable, and then click Add. Each time you add a value, it appears at the bottom of the value list. The order of the values is important; it corresponds to the ascending order of the category values of the test variable. The first value of the list corresponds to the lowest group value of the test variable, and the last value corresponds to the highest value. Elements of the value list are summed, and then each value is divided by this sum to calculate the proportion of cases expected in the corresponding category. For example, a value list of 3, 4, 5, 4 specifies expected proportions of 3/16, 4/16, 5/16, and 4/16.
But if you prefer, you can use syntax like this if gender is numeric.
NPAR TESTS
/CHISQUARE=gender
/EXPECTED=.5 .5.
If it is a string type, run AUTORECODE as previously discussed first and use that result here. Or use Nonparametric Tests> One Sample, which accepts string or numeric variables.
#SPSSStatistics#Support#SupportMigration