spartansFC
Programmer
Hi
I'm trying to get a unique count total from a crosstab, the data i have is
ParentID TotalChildID New Old
1 4 0 4
176 22 0 22
690 22 0 22
1192 96 92 4
so my sql statement is
What i would like to happen is have a count to say:
NewCategory: If New < 1, "New", If New <1 and Old < 1,"Old","old"
I know what i want to happen and i know how to do it in excel but it's not the same the access, can anyone work out my if statement please.
thanks
Mikie
I'm trying to get a unique count total from a crosstab, the data i have is
ParentID TotalChildID New Old
1 4 0 4
176 22 0 22
690 22 0 22
1192 96 92 4
so my sql statement is
Code:
TRANSFORM Count(qrySummaryReportYearlyExistingNew.ChildId) AS CountOfChildId
SELECT qrySummaryReportYearlyExistingNew.ParentId, Count(qrySummaryReportYearlyExistingNew.ChildId) AS [Total Of ChildId]
FROM qrySummaryReportYearlyExistingNew
GROUP BY qrySummaryReportYearlyExistingNew.ParentId
PIVOT qrySummaryReportYearlyExistingNew.strRateTypeDesc;
What i would like to happen is have a count to say:
NewCategory: If New < 1, "New", If New <1 and Old < 1,"Old","old"
I know what i want to happen and i know how to do it in excel but it's not the same the access, can anyone work out my if statement please.
thanks
Mikie