Hi All,
Can anybody please help me on this.
--- I have got two time fields. Time 1 and Time2.
How can I compare both of these field in Lotus script ( not in forumula lanuguage).
Regards,
Software/Hardware used:
ASKED:
September 12, 2009 7:01 AM
UPDATED:
September 14, 2009 2:33 PM
…and it can be as simple as
difference = Now – doc.MyDateField(0)
or
difference = Now – doc.Created
Then,
Msgbox difference
will reveal the number of days in the integer part of the result, and the fraction of a day to the right of the decimal.