Try posting some basic environment info, such as:
Crystal version
Database used
Example data
Expected output
The Select Expert is the wizard for the Report->Edit Selection Formula->Record
Using the non-wizard method allows you to code for just about anything, and were you to describe intent instead of questioning characteristics of the Select Wizard someone will likely find a solution for you.
Perhaps you want a parameter (Insert->Field Object-Right click parameters and select New). Then you can set a default value for the parameter and check for it's value in the record selection formula, opting to not pass any criteria for the default.
Here's an example of setting a string parameter default to "all":
(
If {?MyStringParameterChoices} <> "All" then
{table.field} = {?MyStringParameterChoices}
else
If {?MyStringParameterChoices} = "All" then
true
)
Note the use of parentheticals and fully qualifying and disqualifying the conditional. This is done to assure SQL pass through so that the database does the work (check the Database->Show SQL Query to see what is being passed).
-k