Well I found another way to make it work also...
Thank you for all the help, I appreciate it....
here is my example.
SELECT Count(Result) As Total
From February2005
Where Result='Won'
Union All
SELECT Count(Result2) As Total
From February2005
Where Result2='Won'
Union All
SELECT...
I have a table with 5 columns that are named Result, Result2, Result3, Result4, and Result5. The values of the columns are either "Won" or "Lose". I want to count all the values in each column that have "won" and sum them to get a total of all the won values.
This is what I have, and it is...