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...")
 
m (Pas moved page ADDHOUR Function to ADDHOURS Function)
 
(One intermediate revision by the same user 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 17:46, 18 September 2024

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