G
Guest
I have a crosstab query:
TRANSFORM Avg([numerator]/[denominator]) AS [Percent > 20 min]
SELECT X1.Diagnosis
FROM Z7 INNER JOIN X1 ON (Z7.Month = X1.Month) AND (Z7.Diagnosis =
X1.Diagnosis)
GROUP BY X1.Diagnosis
PIVOT X1.Month;
Is there any way to account for null values in the [Percent>20min]?
Thank you
TRANSFORM Avg([numerator]/[denominator]) AS [Percent > 20 min]
SELECT X1.Diagnosis
FROM Z7 INNER JOIN X1 ON (Z7.Month = X1.Month) AND (Z7.Diagnosis =
X1.Diagnosis)
GROUP BY X1.Diagnosis
PIVOT X1.Month;
Is there any way to account for null values in the [Percent>20min]?
Thank you