Hi
I am currently trying to develop a report based on an SQL Server 2000 stored procedure.
SELECT Sum(Balance), Count(Loans), PostCode, ?(Suburb)
FROM Loans
WHERE @Date = ReportDate
GROUP BY Postcode
----------------
A Postcode can have many suburbs, so what I need to do is find a way to represent suburb grouped as a string (hence the ?). Is this possible? We had previously done this report in MS Access using seperate nested sub-reports for the Suburb, but unfortunately can not do this with Crystal.
I am currently trying to develop a report based on an SQL Server 2000 stored procedure.
SELECT Sum(Balance), Count(Loans), PostCode, ?(Suburb)
FROM Loans
WHERE @Date = ReportDate
GROUP BY Postcode
----------------
A Postcode can have many suburbs, so what I need to do is find a way to represent suburb grouped as a string (hence the ?). Is this possible? We had previously done this report in MS Access using seperate nested sub-reports for the Suburb, but unfortunately can not do this with Crystal.