ALMOST There
I have the following two queries
Query 1
SELECT case.clvtotal1 as CLVCode, case.clvtech1
FROM [case];
UNION SELECT case.clvtotal2 as CLVCode, case.clvtech2
FROM [case];
Query 2
(The one I use to see the results)
SELECT Query1.clvtech1 AS Technician, Sum(Query1.CLVCode) AS CLVs...