I've been having problems with my dates
Could you please help with my date queries?
Day functions are not working. "Pulling the correct information"
Monday
Date()-((((Weekday(Dat e()+2))+3)))
Tuesday
Date()-((Weekday(Date( ),2))+5)
Wednesday
Date()-(Weekday(Date() ,2)+4)
Thursday
Date()-(Weekday(Date() +2)+0)))
Friday
Date()-(Weekday(Date() +2)+6)
Month to Date
Format(Date()," yyyymm")
----------------------------------------------------
Other examples
PreMonth
(((DateDiff("m" ,[DateofPayment],Date()))=1))
PreYear
Expr1: DateDiff("yyyy" ,[DateofPayment],Date())
Today
DateAdd("d",0,D ate())
Year to Date
Format(Date()," yyyy")
ONe Month Back
(((DateDiff("m" ,[DateofPayment],Date()))=0))
Two Months Back
(((DateDiff("m" ,[DateofPayment],Date()))=1))
Could you please help with my date queries?
Day functions are not working. "Pulling the correct information"
Monday
Date()-((((Weekday(Dat e()+2))+3)))
Tuesday
Date()-((Weekday(Date( ),2))+5)
Wednesday
Date()-(Weekday(Date() ,2)+4)
Thursday
Date()-(Weekday(Date() +2)+0)))
Friday
Date()-(Weekday(Date() +2)+6)
Month to Date
Format(Date()," yyyymm")
----------------------------------------------------
Other examples
PreMonth
(((DateDiff("m" ,[DateofPayment],Date()))=1))
PreYear
Expr1: DateDiff("yyyy" ,[DateofPayment],Date())
Today
DateAdd("d",0,D ate())
Year to Date
Format(Date()," yyyy")
ONe Month Back
(((DateDiff("m" ,[DateofPayment],Date()))=0))
Two Months Back
(((DateDiff("m" ,[DateofPayment],Date()))=1))
Comment