I have the following Query Example...
Is it possible to have another column that would contain an 'x' is any of the 5 Reasons start with 'Data'?
Code:
SELECT [Name], [Reason 1], [Reason 2], [Reason 3], [Reason 4], [Reason 5]
FROM [tblTest7] as Q
WHERE [Region]='Canada'
ORDER BY [Name], [Reason 1]