I have a Crystal Report in Visual Studio 2010 and I want to select data from a table.
In Database Fields I have only the table I wish to view.
If I pass in a single-parameter primary key value into the report in a Parameter field (i.e. a serial value), how can I make the Crystal Report only show the data that corresponds to the single row which is referred to by that parameter?
You need to set up a selection formula – try:
{Table.Field} = {?Parameter}. (Use the appropriate table, field and parameter names.)Your report should now select by parameter value.