ADDHOURS Function: Difference between revisions

From Planfix
Jump to: navigation, search
(Created page with "{{#seo: |title=ADDHOUR Function |titlemode=append |keywords=planfix, reports, functions |description=ADDHOUR Function }} '''ADDHOUR()''' — function adds or subtracts a specified number of hours from the selected date. == Format == '''ADDHOUR'''(Date, Count) == Examples == Subtract -3 hours from today's date (24-06-2022 10:10): '''ADDHOUR'''(Now();-3) — Result: 24-06-2022 07:10 Add +4 hours to today's date (24-06-2022 10:15): '''ADDHOUR'''(Now();4) — Result: 2...")
 
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 3: Line 3:
|titlemode=append
|titlemode=append
|keywords=planfix, reports, functions
|keywords=planfix, reports, functions
|description=ADDHOUR Function
|description=ADDHOURS Function
}}
}}
'''ADDHOUR()''' — function adds or subtracts a specified number of hours from the selected date.
'''ADDHOURS()''' — function adds or subtracts a specified number of hours from the selected date.
 
== Format ==
== Format ==
'''ADDHOUR'''(Date, Count)
'''ADDHOURS'''(Date; Count)
 
== Examples ==
== Examples ==
Subtract -3 hours from today's date (24-06-2022 10:10):
Subtract -3 hours from today's date (24-06-2022 10:10):


'''ADDHOUR'''(Now();-3) — Result: 24-06-2022 07:10
'''ADDHOURS'''(Now();-3) — Result: 24-06-2022 07:10
 


Add +4 hours to today's date (24-06-2022 10:15):
Add +4 hours to today's date (24-06-2022 10:15):


'''ADDHOUR'''(Now();4) — Result: 24-06-2022 14:15
'''ADDHOURS'''(Now();4) — Result: 24-06-2022 14:15
 





Latest revision as of 14:13, 9 January 2025

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

Format

ADDHOURS(Date; Count)

Examples

Subtract -3 hours from today's date (24-06-2022 10:10):

ADDHOURS(Now();-3) — Result: 24-06-2022 07:10

Add +4 hours to today's date (24-06-2022 10:15):

ADDHOURS(Now();4) — Result: 24-06-2022 14:15


Go To