How to work with dates in word VBA?
for example I get date as string in this format
14 Jun 2011
Now I want to know the difference between current date and the date in string.
Is it possible in word vba?
Whay I want to achieve is
Code:
If (CurrDate-strtxt) > 11 then
some task
If (currDate-strtxt) > 7 then
some task
Iff (currDate-strtxt)> 3 then
some task