Difference between revisions of "Calculated Value - busdateadd Function"

From SmartWiki
Jump to: navigation, search
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{JavaScript Syntax}}
 
The JavaScript "busdateadd" function adds a specific number of '''business days''' to a given date.
 
The JavaScript "busdateadd" function adds a specific number of '''business days''' to a given date.
 
*Syntax: ''busdateadd(datefield,business days to be added)''
 
*Syntax: ''busdateadd(datefield,business days to be added)''
  datefield could be a [[Standard field]] or a [[Custom field]]
+
  datefield could be a Standard Field or a [[Custom Field]]
  
 
It skips Saturday and Sunday and Canadian public holidays (not banking holidays).  
 
It skips Saturday and Sunday and Canadian public holidays (not banking holidays).  
 
*(A US version will be available at a later date).
 
  
 
This is not related to any [[SmartSimple]] calendar.  
 
This is not related to any [[SmartSimple]] calendar.  
Line 17: Line 16:
 
busdateadd(frm.startdate.value,1) returns 10/11/2008, Monday
 
busdateadd(frm.startdate.value,1) returns 10/11/2008, Monday
  
  frm.startdate is a [[standard field]]. To calculate using [[custom field]] use frm.cf_fieldid.value.
+
  frm.startdate is a standard field. To calculate using [[Custom Field]] use frm.cf_fieldid.value.
 +
 
 +
==See Also==
 +
* [[Manipulating Dates]]
 +
* [[isHoliday]]
 +
* [[Custom Defined Holidays]]
 +
* [[Adding a given number of days to a date based on the value of a dropdown]]
  
[[Category:System Management]][[Category:Enhancements]][[Category:Custom Fields]]
+
[[Category:JavaScript]][[Category:Date Formats]]

Latest revision as of 15:48, 13 May 2014

This feature uses JavaScript syntax
Text code javascript.gif

The JavaScript "busdateadd" function adds a specific number of business days to a given date.

  • Syntax: busdateadd(datefield,business days to be added)
datefield could be a Standard Field or a Custom Field

It skips Saturday and Sunday and Canadian public holidays (not banking holidays).

This is not related to any SmartSimple calendar.


Impact: This allows a calculation in a custom field based on business days instead of real days.

Example, Lets say field frm.startdate.value = 07/11/2008,Friday

busdateadd(frm.startdate.value,1) returns 10/11/2008, Monday

frm.startdate is a standard field. To calculate using Custom Field use frm.cf_fieldid.value.

See Also