if Sta >= CDate("11/1/2008") then
num = num+1
end if
I am trying to count the number of dates in a csv file that where created scince the beginning of the month, I should be getting 64 instead i eather get everything (3809) if i say >= or 0 if I say<= niether of which are right.
does anyone know what would cause this
filter problem
Started by barnigan, Nov 13 2008 10:00 AM
2 replies to this topic
#1
Posted 13 November 2008 - 10:00 AM
|
|
|
#2
Posted 13 November 2008 - 10:43 AM
fixed it with
if year(Sta) = year(Date()) and month(sta) = month(Date)
if year(Sta) = year(Date()) and month(sta) = month(Date)


Sign In
Create Account


Back to top









