Hi,
Any ideas on how to extract a part of a date, I need "7" form 2007, "8" from 2008, and so on. I have been using the below which has worked well until now:
AnyString = DateField
MyStr = Right(AnyString, 1)
NewValue = MyStr
While all is ok when using the date format "DD/MM"/YYYY" all the...