Announcement

Collapse
No announcement yet.

datetime\addHours

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • datetime\addHours

    Hi, The function only works with integers 1 or 2 or 6, not with fractional numbers 3.5 or 4.25 or 5.25?

    Is there a function to convert 3.5 hours into minutes?

    peter


  • #2
    Hello

    are you looking for datetime\addMinutes('field', (3.5 * 60))?
    or you can datetime\addHours(datetime\addMinutes('field', 30),3);

    Comment


    • #3
      a good idea. many thanks

      Comment

      Working...
      X