How to Get the Sum (total) of a column in a query result set
Use the OVER clause to modify a SUM scope in your query. No GROUP BY needed
SELECT
MyColumn, OtherColumn,
SUM(MyColumn) OVER () AS SumTotal
FROM
...
Otherwise, SSMS isn't a calculating engine: it display query results so add it to your query...