Goal: to create a percentage column based off the values of calculated columns.
Here\'s the SQL code of the Crosstab query:
TRANSFORM Count(Master_Ca
Try:
SELECT xTab.Analyst, [Completed]/([Total of ID]/100) AS [Complete%], [In Process]/([Total of ID]/100) AS [In Process%], [Not Started]/([Total of ID]/100) AS [Not Started%] FROM xTab;