Time for problem #2!
I would like to display only those records in the database with a certain field beginning with a specific letter.
The connection string I normally use to display records is:
strSQL = "SELECT TOP 5 * FROM Reviews ORDER BY Artist DESC"
How do I change this to only display records where the Artist field in the db starts with (for example) the letter A?
Can it be done?
Thanks once again,
Ian