--quote:"appreciate that..thx
but after running that why is pacetop 3 showing? shouldn't it be blank?" --end quote
Q. Why is PaceTop = 3 Showing?
A. Because you are using the OR keyword in your sql expression.
W3Schools.com OR vs. AND https://www.w3schools.com/sql/sql_or.asp
To remove PaceTop = 3 from the query results returned by the sql expression you posted - you could add a second PaceTop constraint using the AND keyword.
Like this:
SELECT * FROM STARTERHISTORY WHERE [DATE] >= #01-01-2025# AND [DATE] <= #12-31-2025# AND ((RANKF01 > 1) OR (PACETOP < 3) OR (STAGEREADINESS > 0)) AND NOT PACETOP = 3
Or like this:
SELECT * FROM STARTERHISTORY WHERE [DATE] >= #01-01-2025# AND [DATE] <= #12-31-2025# AND ((RANKF01 > 1) OR (PACETOP < 3) OR (STAGEREADINESS > 0)) AND PACETOP < 3
-jp .
|