Aggregate combines cases (rows), not variables (columns). If you want to compute a new variable that is the sum of two variables:
compute var3=sum(var1, var2).
If you still need/want to aggregate the end result, use the AGGREGATE SUM function on the computed variable.