Hobbies And Interests
Home  >> Hobbies >> Other Hobbies

How to Calculate the Difference Between Two Dates in Lotus Notes

Lotus notes enables users to perform many tasks in an automated manner. One such task involves the ability to find the difference between two dates. Rather than manually figure out the difference between two dates, you can insert some code into Lotus notes to automatically make this determination. This will take out human error and ensure an accurate assessment between the two dates.

Instructions

    • 1

      Open Lotus notes.

    • 2

      Insert code into Lotus notes using the following code: temp := ((@Modified - @Created)/60)/60;

      temphours := @Left(@Text(temp); ".");

      tempminutes := @Left(@Right(@Text(temp); "."); 2);

      tempdays := @TextToNumber(temphours)/24;

      temphours2 := @Left(@Right(@Text(tempdays); "."); 2);

      hrspercent

    • 3

      Substitute the @created and the @modified with the dates and times of your choosing.


https://www.htfbw.com © Hobbies And Interests