ADDMINUTES Function: Difference between revisions

From Planfix
Jump to: navigation, search
No edit summary
m (Aliona moved page ADD MINUTES Function to ADDMINUTES Function without leaving a redirect)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{#seo:
{{#seo:
|title=ADD MINUTES Function
|title=ADDMINUTES Function
|titlemode=append
|titlemode=append
|keywords=planfix, reports, functions
|keywords=planfix, reports, functions
|description=ADD MINUTES Function
|description=ADD MINUTES Function
}}
}}
'''ADD MINUTES()''' — the function adds or subtracts a specified number of minutes from the selected date.
'''ADDMINUTES()''' — the function adds or subtracts a specified number of minutes from the selected date.


== Format ==
== Format ==
'''ADD MINUTES'''(Date, Count)
'''ADDMINUTES'''(Date, Count)


== Examples ==
== Examples ==
Add +50 minutes to today's date (24-06-2022 10:07):
Add +50 minutes to today's date (24-06-2022 10:07):


'''ADD MINUTES'''(Now();50) — Result: 24-06-2022 10:57
'''ADDMINUTES'''(Now();50) — Result: 24-06-2022 10:57




Subtract -30 minutes from today's date (24-06-2022 10:20):
Subtract -30 minutes from today's date (24-06-2022 10:20):


'''ADD MINUTES'''((Now();-30) — Result: 24-06-2022 09:50
'''ADDMINUTES'''((Now();-30) — Result: 24-06-2022 09:50
 


== Go To ==
== Go To ==

Latest revision as of 10:22, 28 February 2024

ADDMINUTES() — the function adds or subtracts a specified number of minutes from the selected date.

Format

ADDMINUTES(Date, Count)

Examples

Add +50 minutes to today's date (24-06-2022 10:07):

ADDMINUTES(Now();50) — Result: 24-06-2022 10:57


Subtract -30 minutes from today's date (24-06-2022 10:20):

ADDMINUTES((Now();-30) — Result: 24-06-2022 09:50


Go To