I have this function :
Function AddALLKeyword(Fi, keyw)
dim myFi
myFi=trim(Fi & "")
myFi=MyFi & " " & keyw
AddALLKeyword=myFi
End Function
dim myFi
myFi=trim(Fi & "")
myFi=MyFi & " " & keyw
AddALLKeyword=myFi
End Function
I used it to print some dates from some dates fields (e.g. : duedates, sentdates) to other text field.
Dates used to be printed in the text fields without any problem... but now , I get an integer.... Like : 40160
Here's an example of an autoassign in the duedate field making use of the above mentioned function.
AM:DueDatesAllPast=addALLKeyword(DueDatesAllPast, DueDate)
So... Before, I used to to have a series of date appearing in the field DueDatesAllPast when I changed dates in the due datefield.
In the DueDatesAllPast field I'd get Something like :
2009-12-10 2009-12-12 2009-12-13.
But now I rather have :
40160 40162 40163
Of course, this is important to me as this is how I keep track of tasks and projects...
[Edited -- previous version was incomprehensible...]
Comments