In CR8.5 you could do an SQL expression field that would return a different value for each record.
For example a report showing a list of Films (film.id in the report) could have an SQL expression field to show the first date it was booked out.
But when I try this in crystal 9 I get an error saying that the FILM Table is not found
Any way for this to work in crystal 9?
Cheers
Pete
For example a report showing a list of Films (film.id in the report) could have an SQL expression field to show the first date it was booked out.
Code:
(Select Min(LT."Start_Date") from LENDING_TABLE LT
Where LT.FLM_ID = FILM.id)
Any way for this to work in crystal 9?
Cheers
Pete