The Year argument can be one to four digits between 1 and Month is a number representing the month of the year between 1 and 12.

Size: px
Start display at page:

Download "The Year argument can be one to four digits between 1 and Month is a number representing the month of the year between 1 and 12."

Transcription

1 The table below lists all of the Excel -style date and time functions provided by the WinCalcManager control, along with a description and example of each function. FUNCTION DESCRIPTION REMARKS EXAMPLE DATE Returns the number of ticks representing a particular date in the server's local timezone. This function should be used to represent a date to other functions instead of representing a date as text, as text dates can lead to problems. The Year argument can be one to four digits between 1 and Month is a number representing the month of the year between 1 and 12. Day is a number representing the day of the month between 1 and the number of days in the month specified. Example: YEAR(DATE(2008,7,4)) - returns the Gregorian calendar year of the date, July 4, 2008, produced by this function (2008). DATEVALUE Returns the number of ticks of the date represented in text. Use DATEVALUE to convert a date represented in text (i.e., MM/DD/YYYY) into ticks that can be passed to other functions. Values given outside any of these parameters' legal ranges will return an error. Date_text is some text representing a date. For example, "30-Jan-2008" or "1/30/2008" are quoted text strings representing dates. The day can only appear before the month in Date_text if month is spelled out (i.e., "Jan," in the first format) to avoid an ambiguity that can arise in the second format. DATEVALUE returns the #VALUE! error value if Date_text appears out of range. Example=MONTH(DATEVALUE("15-Apr-2008")) - returns the month number of April 15, 2008 (4). Any time information in the Date_text is ignored. The ticks returned always represent a time-of-day of Midnight (in the server's local time). TIME Returns a time value in ticks for a particular time based on its number of hours, minutes and seconds. Use TIME to create durations and time periods to be added to other date/time values also represented in ticks. If the year portion of Date_text is omitted, DATEVALUE uses the current year on the server. Hour is a number from 0 (zero) to 23 representing the hour. Any value greater than 12 is interpreted as being in the afternoon. Minute is a number from 0 to 59 representing minutes past the hour. Second is a number from 0 to 59 representing seconds past the minute. Example=SECOND(TIME(14,50,5)) - returns the seconds portion of the time value (5). When these arguments are outside of their range a #VALUE! error is returned.

2 TIMEVALUE Returns a number of ticks representing the time portion of a text string representing the time. Time values can serve as a duration that can be added to other time or date/time values also represented in ticks. Time_text is a text string within quotation marks that represents a time. Examples of acceptable formats include "5:55 PM" and "17:55", if AM/PM is not present AM is assumed (PM times can be entered based on a 24-hour clock, i.e., 5:00 PM is 17:00). Specification of seconds is optional. A time separator is mandatory ("17:00" is acceptable, "1700" is not). When specifying AM or PM, do not use periods ("A.M." or "P.M." will return an error). Example=HOUR(TIMEVALUE("17:00")) - returns the hours portion of the time's text representation (17). DATEADD Returns a Date value containing a date and time value in ticks to which a specified time interval has been added. Any Date information in time_text is ignored. Time values are a portion of a date/time value represented in ticks. When the return value from TIMEVALUE is treated as a date, it is based off of the minimum date, January 1st, 1 AD. The Interval is a String expression representing the time interval you want to add. Its possible values include "yyyy" (year), "y" (days), "d" (days), "w" (weeks), "m" (months), "h" (hours), "n" (minutes), "s" (seconds), "ww" (weeks of year), "q" (quarters). Example=DATEADD("h",1.5,NOW( )) - returns the ticks representing a date and time 1 1/2 hours from now. The Number is a real number representing how many intervals are to be added. Number can be positive (to get date/time values in the future) or negative (to get date/time values in the past). It can contain a fractional part when Interval specifies hours, minutes, or seconds. For other values of Interval, any fractional part of Number is ignored. The DateValue is a Date. An expression representing the date and time to which the interval is to be added.

3 DATEDIFF Returns a whole number representing the number of time intervals between two date values represented in ticks. The Interval is a String expression representing the time interval you want as the unit of difference between two dates. Its possible values include "yyyy" (year), "y" (days), "d" (days), "w" (weeks), "m" (months), "h" (hours), "n" (minutes), "s" (seconds), "ww" (weeks of year), "q" (quarters). Example=DATEDIFF("m",DATE(2004,1,1),DATE(2005,3,1)) - returns the number of months between January, 2004, and March, 2005 (14). The Date1, Date2 arguments are two date/time values you want to use in the calculation. The value of Date1 is subtracted from the value of Date2 to produce the difference. The DayOfWeek is an optional value chosen from an enumeration specifying the first day of the week ranging from 1 (Sunday) to 7 (Saturday). If unspecified, Sunday (1) is used. If DayOfWeek is 0, then the first day of week configured on the server's local settings is used. DAYS360 Returns the number of days between two dates based on a 360-day year (twelve 30-day months) used in some accounting applications. Use this function when computing payments if your accounting system is based on twelve 30-day months. The WeekOfYear is another optional value chosen from an enumeration with values of January 1st (1), the week having at least four days (2), or the first full week (3). If unspecified, January 1st is used. If WeekOfYear is 0, then the week of year configured on the server's local settings is used. Start_date and end_date are the two dates between which you want to know the number of days (based on a 360-day year). If start_date occurs after end_date, DAYS360 will return a negative number. Dates should be entered by using the DATE function, or received as results from other formulas and functions. Method is an optional argument indicating whether to use the European method of computation instead of the American (U.S. NASD) method. Each produces slightly different answers when either Start_date or End_date occurs on the 31st day of a month. The default Method is U.S. NASD ("FALSE") when omitted. Example=DAYS360(DATE(2005,1,1),DATE(2005,1,31),"TRUE") - calculates the number of days on an accounting calendar having 30-day months between January 1, 2005 and January 31, 2005 using the European method which treats January 31st as January 30th (29). Using the American method would produce a different answer (30). Any time component of these dates is interpreted in the local time zone of the server.

4 YEAR Returns the year portion of a date as a whole number, ranging from 1 to Serial_number is a number of ticks representing a date/time value. Dates should be entered by using the DATE function, or received as results of other formulas and functions. For example, use DATE(2007,2,14) for the 14th day of February, Problems can occur if dates are entered as text. Example=YEAR(DATEVALUE("2/14/2007")) - returns the year portion of the date (2007). Values returned by the YEAR, MONTH and DAY functions will be Gregorian Calendar values regardless of the display format for the supplied date value. MONTH Returns the month portion of a date as a whole number, ranging from 1 (January) to 12 (December). Involving date/time values exceeding the year 9999 in calculations results in an error. Serial_number is a number of ticks representing a date/time value. Dates should be entered by using the DATE function, or received as results of other formulas and functions. For example, use DATE(2008,4,15) for the 15th day of April, Problems can occur if dates are entered as text. Example=MONTH(DATEVALUE("15-Apr-2008")) - returns the month portion of the date (4). DAY Returns the day portion of a date as a whole number. Values returned by the YEAR, MONTH and DAY functions will be Gregorian Calendar values regardless of the display format for the supplied date value. Serial_number is a number of ticks representing a date/time value. Dates should be entered by using the DATE function, or received as results of other formulas and functions. For example, use DATE(2006,6,22) for the 22nd day of June, Problems can occur if dates are entered as text. Example=DAY(DATE(2006,6,22)) - returns the day portion of June 22, 2006 (22). TODAY Returns the ticks representing today's date, in server local time. The returned date will have no time component (i.e., midnight server local time). Values returned by the YEAR, MONTH and DAY functions will be Gregorian Calendar values regardless of the display format for the supplied date value. Date/time values are stored as sequential counts of ticks, so they can be used in calculations. See the NOW( ) function to get today's date with its time component. Example=HOUR(TODAY( )) - returns midnight because this function returns a date value with no time component (0).

5 HOUR MINUTE Returns the hour of a time value. The hour is given as a whole number (fractions rounded down), ranging from 0 (12:00 AM) to 23 (11:00 PM). Hours past noon are always returned based on a 24-hour clock. Returns the minutes of a time value. The minute is given as a whole number (fractions rounded down), ranging from 0 to 59. Serial_number is a date/time in ticks containing the hour you want to find. Time values are represented in ticks as a portion of a date/time value. Times may be entered as text strings within quotation marks (for example, "5:55 PM") or received from other formulas and functions (for example, TIMEVALUE("5:55 PM")). Serial_number is a date/time in ticks containing minutes you want to find. Times values are represented in ticks as a portion of a date/time value. Example=HOUR("2:50:05PM") - returns the hour portion of the time (14). Example=MINUTE("2:50:05PM") - returns the minute portion of the time (50). SECOND NOW EDATE Returns the seconds of a time value. The second is given as a whole number (fractions rounded down), ranging from 0 to 59. When a time omits seconds, 0 (zero) is assumed. Returns the ticks representing today's date and time (in server local time). Returns a date that is a specified number of months before or after a specified date (the start date). Times may be entered as text strings within quotation marks (for example, "5:55 PM"), or received from other formulas and functions (for example, TIMEVALUE("5:55 PM")). Serial_number is a date/time in ticks containing seconds you want to find. Times values are represented in ticks as a portion of a date/time value. Times may be entered as text strings within quotation marks (for example, "5:55 PM"), or received from other formulas and functions (for example, TIMEVALUE("5:55 PM")). Date/time values are stored as sequential counts of ticks, so they can be used in calculations. See the TODAY( ) function to get today's date without its time component. EDATE is frequently used to determine due dates that occur on the same day of the month as the start date. WORKDAY(start_date,days,holidays) Example=SECOND("2:50PM") - returns the seconds portion of the time (0). Example=HOUR(NOW( )) - returns the current hour in local server time. Example: =EDATE (A2, 1) cell A2 has a Date 01/15/2008. Returns the date, one month after the date specified in cell A2. Will return February 15, Start_date is a date that represents the start date.days is the number of nonweekend and nonholiday days before or after start_date. A positive value for days yields a future date; a negative value yields a past date.

6 EOMONTH Returns the last day of the month before or after a specified date. Enter start date using the DATE function or some other function that returns a date to prevent the problems that can occur when a date is entered as text. Example: =EOMONTH (A2, 1)cell A2 has a date 01/01/2008. Returns the day of the month, one month after the date (February 29, 2008). Will return 02/29/2008. NETWORKDAYS WEEKDAY WEEKNUM WORKDAY Returns the number of whole workdays between two dates. Converts a serial number to a day of the week Converts a serial number to a number representing where the week falls numerically with a year Returns the serial number of the date before or after a specified number of workdays. Use a positive number for months to represent a future date and a negative number to represent a past date. If months is not an integer, it is truncated. Work days exclude weekends and any dates identified in holidays. Enter Dates using the DATE function, or as results of other formulas or functions. For example, use DATE (2008, 5, 23) for the 23rd day of May, Serial number is a sequential number that represents the date of the day you are trying to find. WEEKNUM(serial_num, return_type) Serial_num is a date within the week.return_type is a number that determines on which day the week begins. The default is 1. Workdays exclude weekends and any dates identified as holidays. NETWORKDAYS (A2, A3) cell A2 has start date 10/01/2008, cell A3 has End Date 3/01/2009. Considering 11/2./2008,12/4/2008, 1/21/2009 as holidays. Will return 108. Example: =WEEKDAY (A2) cell A2 has a date 2/14/2008. Returns the day of the week, with numbers 1(Sunday) through 7(Saturday), i.e. 5. Example: =WEEKNUM(A2,1) cell A2 has a date March 9, Returns the number of the week in the year, with a week beginning on Sunday, i.e. 11. Example: =WORKDAY (A2, A3) cell A2 has a date 10/01/2008 and A3 has the Days to completion, i.e Considering 11/26/2008, 12/4/2008, 1/21/2009 as holidays, the output would be the Date 151 workdays from the start date, i.e. 4/30/2009.

ARTT BUSINESS SCHOOL INTRODUCTION TO INFORMATION TECHNOLOGY

ARTT BUSINESS SCHOOL INTRODUCTION TO INFORMATION TECHNOLOGY Excel TODAY Function Get the current date A serial number representing a particular date in Excel. =TODAY () TODAY takes no parameters, but required that you use empty parentheses (). The value returned

More information

Genesys Info Mart. date-time Section

Genesys Info Mart. date-time Section Genesys Info Mart date-time Section 11/27/2017 date-time Section date-time-max-days-ahead date-time-min-days-ahead date-time-start-year date-time-table-name date-time-tz first-day-of-week fiscal-year-start

More information

Example. Section: PS 709 Examples of Calculations of Reduced Hours of Work Last Revised: February 2017 Last Reviewed: February 2017 Next Review:

Example. Section: PS 709 Examples of Calculations of Reduced Hours of Work Last Revised: February 2017 Last Reviewed: February 2017 Next Review: Following are three examples of calculations for MCP employees (undefined hours of work) and three examples for MCP office employees. Examples use the data from the table below. For your calculations use

More information

Date and Time Functions

Date and Time Functions Date and Time Functions Introduction If you are using these functions in conjunction with either the Now() or Now_() functions, be aware that the time zone returned is the one configured on the machine

More information

Calendar PPF Production Cycles Non-Production Activities and Events

Calendar PPF Production Cycles Non-Production Activities and Events 20-207 Calendar PPF Production Cycles Non-Production Activities and Events Four Productions For non-holiday productions 7 Week Stage Cycles 36 Uses plus strike (as in prior years and per agreement with

More information

Using Custom Number Formats

Using Custom Number Formats APPENDIX B Using Custom Number Formats Although Excel provides a good variety of built-in number formats, you may find that none of these suits your needs. This appendix describes how to create custom

More information

2017 Health Communication Network Limited. Sending Bulk SMS Messages from the Appointment Book

2017 Health Communication Network Limited. Sending Bulk SMS Messages from the Appointment Book 2017 Health Communication Network Limited Sending Bulk SMS Messages from the Appointment Book Contents Starting the Wizard... 3 Step 1: Selecting and Editing the SMS Message... 4 Step 2: Selecting a Schedule

More information

NHS e-referral Service

NHS e-referral Service Extracting Advice and Guidance data Published July 2017 Copyright 2016 Health and Social Care Information Centre. The Health and Social Care Information Centre is a non-departmental body created by statute,

More information

Curriculum Map Maths Year 4 (KS 2)

Curriculum Map Maths Year 4 (KS 2) Curriculum Map Maths Year 4 (KS 2) Month Curriculum Strand Learning Objective Topic/Unit Activities/Teaching Approach September Number and Place Value Addition & Subtraction Geometry properties of 2D LO:

More information

Schedule/BACnet Schedule

Schedule/BACnet Schedule Object Dictionary 1 Schedule/BACnet Schedule Introduction Note: The Johnson Controls Schedule object is considered a BACnet Schedule object because it supports BACnet functionality. In addition, this object

More information

AIMMS Function Reference - Date Time Related Identifiers

AIMMS Function Reference - Date Time Related Identifiers AIMMS Function Reference - Date Time Related Identifiers This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms 3.13 Date-Time

More information

Scheduling. Scheduling Tasks At Creation Time CHAPTER

Scheduling. Scheduling Tasks At Creation Time CHAPTER CHAPTER 13 This chapter explains the scheduling choices available when creating tasks and when scheduling tasks that have already been created. Tasks At Creation Time The tasks that have the scheduling

More information

Adobe EchoSign Calculated Fields Guide

Adobe EchoSign Calculated Fields Guide Adobe EchoSign Calculated Fields Guide Version 1.0 Last Updated: May, 2013 Table of Contents Table of Contents... 2 Overview... 3 Calculated Fields Use-Cases... 3 Calculated Fields Basics... 3 Calculated

More information

Package datetimeutils

Package datetimeutils Type Package Title Utilities for Dates and Times Version 0.2-12 Date 2018-02-28 Package datetimeutils March 10, 2018 Maintainer Utilities for handling dates and times, such as selecting

More information

ADDITIONAL EXCEL FUNCTIONS

ADDITIONAL EXCEL FUNCTIONS ADDITIONAL EXCEL FUNCTIONS The following notes and exercises on additional Excel functions are based on the Grade 12 Examination Guidelines for 2016 recently issued by the DBE. As such, they represent

More information

Conditional Formatting

Conditional Formatting Microsoft Excel 2013: Part 5 Conditional Formatting, Viewing, Sorting, Filtering Data, Tables and Creating Custom Lists Conditional Formatting This command can give you a visual analysis of your raw data

More information

Class Library java.util Package. Bok, Jong Soon

Class Library java.util Package. Bok, Jong Soon Class Library java.util Package Bok, Jong Soon javaexpert@nate.com www.javaexpert.co.kr Enumeration interface An object that implements the Enumeration interface generates a series of elements, one

More information

Payflow Implementer's Guide FAQs

Payflow Implementer's Guide FAQs Payflow Implementer's Guide FAQs FS-PF-FAQ-UG-201702--R016.00 Fairsail 2017. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced, disclosed, or used

More information

Objectives Reading SAS Data Sets and Creating Variables Reading a SAS Data Set Reading a SAS Data Set onboard ia.dfwlax FirstClass Economy

Objectives Reading SAS Data Sets and Creating Variables Reading a SAS Data Set Reading a SAS Data Set onboard ia.dfwlax FirstClass Economy Reading SAS Data Sets and Creating Variables Objectives Create a SAS data set using another SAS data set as input. Create SAS variables. Use operators and SAS functions to manipulate data values. Control

More information

Database Programming with SQL

Database Programming with SQL Database Programming with SQL 4-3 Objectives This lesson covers the following objectives: Demonstrate the use of SYSDATE and date functions State the implications for world businesses to be able to easily

More information

Excel Formulas 140 Excel Formulas and Functions with usage and examples. By Vijay Kumar

Excel Formulas 140 Excel Formulas and Functions with usage and examples. By Vijay Kumar Excel Formulas 140 Excel Formulas and Functions with usage and examples By Vijay Kumar Copyright 2016 All Rights Reserved. No part of this book may be reproduced in any form or by any means, including

More information

ADVANCED ALGORITHMS TABLE OF CONTENTS

ADVANCED ALGORITHMS TABLE OF CONTENTS ADVANCED ALGORITHMS TABLE OF CONTENTS ADVANCED ALGORITHMS TABLE OF CONTENTS...1 SOLVING A LARGE PROBLEM BY SPLITTING IT INTO SEVERAL SMALLER SUB-PROBLEMS CASE STUDY: THE DOOMSDAY ALGORITHM... INTRODUCTION

More information

Table of Contents 1 Basic Configuration Commands 1-1

Table of Contents 1 Basic Configuration Commands 1-1 Table of Contents 1 Basic Configuration Commands 1-1 Basic Configuration Commands 1-1 clock datetime 1-1 clock summer-time one-off 1-2 clock summer-time repeating 1-3 clock timezone 1-4 configure-user

More information

Highline Excel 2016 Class 09: Date Functions

Highline Excel 2016 Class 09: Date Functions Highline Excel 2016 Class 09: Date Functions Table of Contents Date Functions... 2 Examples of EOMONTH, EDATE and DATE functions:... 2 Fiscal Year... 3 Example of Data Set with Date Helper Columns, including

More information

Excel Expert Microsoft Excel 2010

Excel Expert Microsoft Excel 2010 Excel Expert Microsoft Excel 2010 Formulas & Functions Table of Contents Excel 2010 Formulas & Functions... 2 o Formula Basics... 2 o Order of Operation... 2 Conditional Formatting... 2 Cell Styles...

More information

HP Project and Portfolio Management Center

HP Project and Portfolio Management Center HP Project and Portfolio Management Center Software Version: 8.00 Generating Fiscal Periods Document Release Date: July 2009 Software Release Date: July 2009 Legal Notices Warranty The only warranties

More information

Microsoft Excel 2013 Series and Custom Lists (Level 3)

Microsoft Excel 2013 Series and Custom Lists (Level 3) IT Training Microsoft Excel 2013 Series and Custom Lists (Level 3) Contents Introduction...1 Extending a Single Cell...1 Built-in Data Series...2 Extending Two Cells...2 Extending Multiple Cells...3 Linear

More information

Lesson:9 Working with Array and String

Lesson:9 Working with Array and String Introduction to Array: Lesson:9 Working with Array and String An Array is a variable representing a collection of homogeneous type of elements. Arrays are useful to represent vector, matrix and other multi-dimensional

More information

Computer Grade 5. Unit: 1, 2 & 3 Total Periods 38 Lab 10 Months: April and May

Computer Grade 5. Unit: 1, 2 & 3 Total Periods 38 Lab 10 Months: April and May Computer Grade 5 1 st Term Unit: 1, 2 & 3 Total Periods 38 Lab 10 Months: April and May Summer Vacation: June, July and August 1 st & 2 nd week Day 1 Day 2 Day 3 Day 4 Day 5 Day 6 First term (April) Week

More information

1. Introduction to Microsoft Excel

1. Introduction to Microsoft Excel 1. Introduction to Microsoft Excel A spreadsheet is an online version of an accountant's worksheet, which can automatically do most of the calculating for you. You can do budgets, analyze data, or generate

More information

ProgressBook StudentInformation Advanced Ad-Hoc Reporting

ProgressBook StudentInformation Advanced Ad-Hoc Reporting ProgressBook StudentInformation Advanced Ad-Hoc Reporting ProgressBook StudentInformation Advanced Ad-Hoc Reporting Table of Contents 1 Standard Report Wizard... 1 1.1 Name Tab... 1 1.2 Categories Tab...

More information

Extending Ninox with NX

Extending Ninox with NX Introduction Extending Ninox with NX NX, the Ninox query language, is a powerful programming language which allows you to quickly extend Ninox databases with calculations and trigger actions. While Ninox

More information

Chapter 9 How to use functions

Chapter 9 How to use functions Chapter 9 How to use functions Murach's MySQL, C9 2015, Mike Murach & Associates, Inc. Slide 1 Objectives Applied Code queries that format numeric or date/time data. Code queries that require any of the

More information

Application Guide. BACnet Scheduling Tips. Overview. General Principles. For KMC BACnet Controllers

Application Guide. BACnet Scheduling Tips. Overview. General Principles. For KMC BACnet Controllers BACnet Scheduling Tips For KMC BACnet Controllers Application Guide Overview...1 General Principles...1 Sample Flowchart...2 FlexStat...2 BAC-A1616BC Building Controller...3 More Information...6 Overview

More information

Title. Syntax. stata.com. datetime business calendars creation Business calendars creation

Title. Syntax. stata.com. datetime business calendars creation Business calendars creation Title statacom datetime business calendars creation Business calendars creation Syntax Description Remarks and examples Also see Syntax Business calendar calname and corresponding display format %tbcalname

More information

Today s Experts. Mastering Dates Using SEQUEL 1. Technical Consultant. Technical Consultant

Today s Experts. Mastering Dates Using SEQUEL 1. Technical Consultant. Technical Consultant Today s Experts Steven Spieler Vivian Hall Technical Consultant Technical Consultant Mastering Dates Using SEQUEL 1 Mastering Dates Using SEQUEL Mastering Dates Using SEQUEL 2 Working with dates on the

More information

CALENDAR OF FILING DEADLINES AND SEC HOLIDAYS

CALENDAR OF FILING DEADLINES AND SEC HOLIDAYS CALENDAR OF FILING S AND SEC HOLIDAYS INFORMATION IN THIS CALENDAR HAS BEEN OBTAINED BY SOURCES BELIEVED TO BE RELIABLE, BUT CANNOT BE GUARANTEED FOR ACCURACY. PLEASE CONSULT WITH PROFESSIONAL COUNSEL

More information

Programming Date and Time APIs

Programming Date and Time APIs System i Programming Date and Time APIs Version 6 Release 1 System i Programming Date and Time APIs Version 6 Release 1 Note Before using this information and the product it supports, read the information

More information

Table Of Contents. Table Of Contents

Table Of Contents. Table Of Contents Windows and Files Table Of Contents Table Of Contents Minitab Windows... 5 Windows... 5 Rename Graph... 5 Rename Worksheet... 5 Data Window... 7 Data Window Overview... 7 General information on working

More information

Auction Calendar 2016/2017 for Capacity Allocation Mechanism Network Code

Auction Calendar 2016/2017 for Capacity Allocation Mechanism Network Code CAP633-15 Version date: January 14 2016 Calendar 2016/2017 for Capacity Allocation Mechanism Network Code EXPLANATORY NOTE/DISCLAIMER The Network Code on Capacity Allocation Mechanisms in Gas Transmission

More information

Nimsoft Monitor. reboot Guide. v1.4 series

Nimsoft Monitor. reboot Guide. v1.4 series Nimsoft Monitor reboot Guide v1.4 series Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Roll Marking Secondary School Tech Tip

Roll Marking Secondary School Tech Tip Roll Marking Secondary School Tech Tip Index Roll Marking Secondary School... 1 Roll Marking Periods... 2 Holiday and Term Dates... 3 Check the Attendance Settings... 4 Marking the Roll... 6 Unmarked Rolls

More information

CIMA Certificate BA Interactive Timetable

CIMA Certificate BA Interactive Timetable CIMA Certificate BA Interactive Timetable 2018 Nottingham & Leicester Version 3.2 Information last updated 09/03/18 Please note: Information and dates in this timetable are subject to change. Introduction

More information

Reporting Functions & Operators

Reporting Functions & Operators Functions Reporting Functions & Operators List of Built-in Field Functions Function Average Count Count Distinct Maximum Minimum Sum Sum Distinct Return the average of all values within the field. Return

More information

Calendar Excel Template User Guide

Calendar Excel Template User Guide Calendar Excel Template User Guide Excel-based simple Calendar Template Version 3 This Excel-based template provides a calendar template for each month of a year. It also incorporates an hourly schedule

More information

FAMIS Web Time. User Manual. Haight, Timothy 3/3/2012

FAMIS Web Time. User Manual. Haight, Timothy 3/3/2012 FAMIS Web Time User Manual Haight, Timothy 3/3/2012 Table of Contents Introduction... 3 User Requirements... 3 Purpose... 3 Time Card Description... 4 How to Log In... 6 Invalid Login Errors... 8 Default

More information

Troop calendar

Troop calendar Troop 546 2013-2014 calendar For questions and information please visit www.troop546peoriaaz.com or email troop546info@googlegroups.com August Court of honor Tue Aug 27, 2013 6pm - 7:30pm Award scouts

More information

Configuration Manual. Version 5.5

Configuration Manual. Version 5.5 Configuration Manual Version 5.5 Table of Contents Bulk Import of Employees... 4 Bulk Employee Import File Requirements and Sample... 4 Bulk Import of Initial Flexi Time Balance... 4 Initial Flexi Balance

More information

SAS 101. Based on Learning SAS by Example: A Programmer s Guide Chapters 9, 11 & 12. By Tasha Chapman, Oregon Health Authority

SAS 101. Based on Learning SAS by Example: A Programmer s Guide Chapters 9, 11 & 12. By Tasha Chapman, Oregon Health Authority SAS 101 Based on Learning SAS by Example: A Programmer s Guide Chapters 9, 11 & 12 By Tasha Chapman, Oregon Health Authority Topics covered SAS dates Date functions Numeric functions Character functions

More information

SWITCH(DatePart("w",DateOfYear) IN(1,7),"Weekend",DatePart("w",DateOfYear) IN(2,3,4,5,6),"Weekday") AS DayType,

SWITCH(DatePart(w,DateOfYear) IN(1,7),Weekend,DatePart(w,DateOfYear) IN(2,3,4,5,6),Weekday) AS DayType, SeQueL 4 Queries and their Hidden Functions! by Clark Anderson A friend recently exclaimed Can you really use this function in SQL! In this article of my series I will explore and demonstrate many of the

More information

B&E 105: TECHNOLOGY FOR BUSINESS SOLUTIONS EXAM 5 CHECKLIST & OUTLINE

B&E 105: TECHNOLOGY FOR BUSINESS SOLUTIONS EXAM 5 CHECKLIST & OUTLINE B&E 105: TECHNOLOGY FOR BUSINESS SOLUTIONS EXAM 5 CHECKLIST & OUTLINE Strategy for doing well: Work along with the videos, filling out your Excel file(s) step by step. Do this until you can comfortably

More information

Millennium Report Writer

Millennium Report Writer Millennium Report Writer The report writer can be used for most of your reporting needs, including employee and personnel listings. You also can access current, MTD, QTD, and YTD values for any earning,

More information

Auction Calendar 2017/2018 for Capacity Allocation Mechanism Network Code

Auction Calendar 2017/2018 for Capacity Allocation Mechanism Network Code CAP682-16 Version date: October 07 2016 Calendar 2017/2018 for Capacity Allocation Mechanism Network Code EXPLANATORY NOTE/DISCLAIMER The Network Code on Capacity Allocation Mechanisms in Gas Transmission

More information

Unit 6. Scalar Functions

Unit 6. Scalar Functions Unit 6. Scalar Functions What This Unit Is About This unit provides information on how to use various common scalar functions. What You Should Be Able to Do After completing this unit, you should be able

More information

Bill Jelen with 112K contributors and 6,156,123 guests H OLY MACRO! BOOKS. PO Box 82, Uniontown, OH 44685

Bill Jelen with 112K contributors and 6,156,123 guests H OLY MACRO! BOOKS. PO Box 82, Uniontown, OH 44685 by Bill Jelen with 112K contributors and 6,156,123 guests H OLY MACRO! BOOKS PO Box 82, Uniontown, OH 44685 Excel Gurus Gone Wild 2009 by Bill Jelen All rights reserved. No part of this book may be reproduced

More information

WORKING WITH SAS DATE AND TIME FUNCTIONS Andrew H. Karp Sierra Information Services, Inc. San Francisco, California USA

WORKING WITH SAS DATE AND TIME FUNCTIONS Andrew H. Karp Sierra Information Services, Inc. San Francisco, California USA WORKING WITH SAS DATE AND TIME FUNCTIONS Andrew H. Karp Sierra Information Services, Inc. San Francisco, California USA Introduction Many SAS applications require that operations be performed on data collected

More information

Common SQL Questions

Common SQL Questions L04 Common SQL Questions Why and How-to Tuesday, May 9, 2006 08:30a.m. 09:40 a.m. There are a few questions that come up time and time again. Why do certain SQL statements behave the way they do, and how

More information

Tutorial 2. Review CIS143

Tutorial 2. Review CIS143 Tutorial 2 CIS143 Review Identify Components of an Excel worksheet Navigate a Worksheet Navigate Between Worksheets Plan a Worksheet Enter Data into a Worksheet Change the Size of a Row or Column Insert

More information

Package chron. R topics documented: October 7, Version

Package chron. R topics documented: October 7, Version Version 2.3-51 Package chron October 7, 2017 Title Chronological Objects which can Handle Dates and Times Provides chronological objects which can handle dates and times. Depends R (>= 2.12.0) Imports

More information

Basic Device Management

Basic Device Management This chapter contains the following sections: About, page 1 Licensing Requirements for, page 2 Default Settings for Basic Device Parameters, page 3 Changing the Device Hostname, page 3 Configuring the

More information

2016 Health Communication Network Limited. Appointment Book Features

2016 Health Communication Network Limited. Appointment Book Features 2016 Health Communication Network Limited Appointment Book Features MedicalDirector Blue Chip Appointment Book Features - Overview This handout covers the following features of MedicalDirector Blue Chip

More information

MIT AITI Python Software Development

MIT AITI Python Software Development MIT AITI Python Software Development PYTHON L02: In this lab we practice all that we have learned on variables (lack of types), naming conventions, numeric types and coercion, strings, booleans, operator

More information

Nortel Enterprise Reporting Quality Monitoring Meta-Model Guide

Nortel Enterprise Reporting Quality Monitoring Meta-Model Guide NN44480-110 Nortel Enterprise Reporting Quality Monitoring Meta-Model Guide Product release 6.5 and 7.0 Standard 01.03 November 2009 Nortel Enterprise Reporting Quality Monitoring Meta-Model Guide Publication

More information

Grade 4 Mathematics Pacing Guide

Grade 4 Mathematics Pacing Guide Jul 2014 ~ August 2014 ~ Sep 2014 1 2 3 4 5 6 7 8 9 10 11 12 14 15 16 17 Routines 19 Routines 20 Routines BOY 22 BOY 23 24 11 12 14 29 15 30 31 Notes: Found Online @ wwweverydaymathonlinecom 1 More Calendars

More information

WebCalendar User Manual

WebCalendar User Manual WebCalendar User Manual Document Version: $Id: WebCalendar-UserManual.html,v 1.6 2004/06/26 10:35:04 cknudsen Exp $ WebCalendar Version: 0.9.42 Table of Contents Introduction Users and Events Repeating

More information

Internet Engineering Task Force (IETF) Category: Standards Track. August 2017

Internet Engineering Task Force (IETF) Category: Standards Track. August 2017 Internet Engineering Task Force (IETF) Request for Comments: 8194 Category: Standards Track ISSN: 2070-1721 J. Schoenwaelder Jacobs University Bremen V. Bajpai Technical University of Munich August 2017

More information

Section 6. Functions

Section 6. Functions Section 6 Functions By the end of this Section you should be able to: Use Logical Functions Use Date and Time Functions Use Lookup Functions Use Maths and Financial Functions Use Concatenate Nest Functions

More information

Table of Contents EXCEL ADD-IN CHANGE LOG VERSION (APRIL 28, 2013)... 2 Changes... 2 VERSION (FEBRUARY 20, 2013)...

Table of Contents EXCEL ADD-IN CHANGE LOG VERSION (APRIL 28, 2013)... 2 Changes... 2 VERSION (FEBRUARY 20, 2013)... Table of Contents EXCEL ADD-IN CHANGE LOG... 2 VERSION 3.4.0.0 (APRIL 28, 2013)... 2 Changes... 2 VERSION 3.3.1.1 (FEBRUARY 20, 2013)... 2 Changes... 2 Maximum number of items per query was increased to

More information

CSC-140 Assignment 6

CSC-140 Assignment 6 CSC-140 Assignment 6 1 Introduction In this assignment we will start out defining our own classes. For now, we will design a class that represents a date, e.g., Tuesday, March 15, 2011, or in short hand

More information

Product Guide Verizon Pennsylvania Inc. Verizon Pennsylvania Inc. Original Sheet 1 TABLE OF CONTENTS. Business Exchange Service...

Product Guide Verizon Pennsylvania Inc. Verizon Pennsylvania Inc. Original Sheet 1 TABLE OF CONTENTS. Business Exchange Service... Verizon Pennsylvania Inc. Verizon Pennsylvania Inc. Original Sheet 1 TABLE OF CONTENTS Business Exchange Service... Operator Services Exchange Service Calling... A June 1, 2011 2nd Revised Sheet 2 Cancels

More information

NCSS Statistical Software. The Data Window

NCSS Statistical Software. The Data Window Chapter 103 Introduction This chapter discusses the operation of the NCSS Data Window, one of the four main windows of the NCSS statistical analysis system. The other three windows are the Output Window,

More information

Spreadsheets: Mathematics

Spreadsheets: Mathematics Lesson 7 Spreadsheets: Mathematics Activity 1: Time Charts Format Data Enter a Formula Create a Series Change Column Width Activity 2: Measurements Apply Number Formats Activity 3: Calculating with a Spreadsheet

More information

New Permit Request Guide

New Permit Request Guide 2016 2017 New Permit Request Guide To start the process you will have to open the facilities rentals online permit bookings system by accessing the following webpage; http://permits.peelschools.org. Sign

More information

User Guide on Online Resource Booking System (ORBS) Centre for Genomic Sciences HKU

User Guide on Online Resource Booking System (ORBS) Centre for Genomic Sciences HKU User Guide on Online Resource Booking System (ORBS) Centre for Genomic Sciences HKU July 2013 Introduction to Online Resource Booking System The Online Resource Booking System (ORBS) is a convenient web-based

More information

Grandstream Networks, Inc. How to Use Office Time and Holiday on UCM6XXX

Grandstream Networks, Inc. How to Use Office Time and Holiday on UCM6XXX Grandstream Networks, Inc. How to Use Office Time and Holiday on UCM6XXX Table of Contents OVERVIEW... 3 CONFIGURE OFFICE TIME AND HOLIDAY... 4 Office Time... 4 Holiday... 5 TIME CONDITION DEFINITIONS...

More information

Why Jan 1, 1960? See:

Why Jan 1, 1960? See: 1 Why Jan 1, 1960? See: http://support.sas.com/community/newsletters/news/insider/dates.html Tony Barr was looking for a timestamp that would pre-date most electronic records that were available in the

More information

INFORMATION TECHNOLOGY SPREADSHEETS. Part 1

INFORMATION TECHNOLOGY SPREADSHEETS. Part 1 INFORMATION TECHNOLOGY SPREADSHEETS Part 1 Page: 1 Created by John Martin Exercise Built-In Lists 1. Start Excel Spreadsheet 2. In cell B1 enter Mon 3. In cell C1 enter Tue 4. Select cell C1 5. At the

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Excel contains numerous tools that are intended to meet a wide range of requirements. Some of the more specialised tools are useful to only certain types of people while others have

More information

Autumn Term Spring Term Summer Term. Number, place value and rounding

Autumn Term Spring Term Summer Term. Number, place value and rounding Dolphins Year 3/4 Autumn Term Spring Term Summer Term Number, place value and rounding.! Count in multiples of 6, 7, 9, 25 and 1000. 10 or 100 more or less than a given number! Order and compare numbers

More information

Programming Assignment #2

Programming Assignment #2 Programming Assignment #2 Due: 11:59pm, Wednesday, Feb. 13th Objective: This assignment will provide further practice with classes and objects, and deepen the understanding of basic OO programming. Task:

More information

Chapter 2 Formulas and Functions by Mary Anne Poatsy, Keith Mulbery, Lynn Hogan, Amy Rutledge, Cyndi Krebs, Eric Cameron, Rebecca Lawson

Chapter 2 Formulas and Functions by Mary Anne Poatsy, Keith Mulbery, Lynn Hogan, Amy Rutledge, Cyndi Krebs, Eric Cameron, Rebecca Lawson Chapter 2 Formulas and Functions by Mary Anne Poatsy, Keith Mulbery, Lynn Hogan, Amy Rutledge, Cyndi Krebs, Eric Cameron, Rebecca Lawson 1 Excel offers 3 types of cell REFERENCES for use when a formula

More information

DOWNLOAD OR READ : WEEKLY CALENDAR 2019 PLANNER PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : WEEKLY CALENDAR 2019 PLANNER PDF EBOOK EPUB MOBI DOWNLOAD OR READ : WEEKLY CALENDAR 2019 PLANNER PDF EBOOK EPUB MOBI Page 1 Page 2 weekly calendar 2019 planner weekly calendar 2019 planner pdf weekly calendar 2019 planner For more weekly and daily time

More information

MS EXCEL: TABLES, FORMATS, FUNCTIONS AND MACROS

MS EXCEL: TABLES, FORMATS, FUNCTIONS AND MACROS MS EXCEL: TABLES, FORMATS, FUNCTIONS AND MACROS ü Open the file Task_1_Template.xlsx. All the further tasks will be conducted in this file, on particular sheets (Menu, Task 1, Task 2, Task 3). TASK 1.

More information

Designing Adhoc Reports

Designing Adhoc Reports Designing Adhoc Reports Intellicus Web-based Reporting Suite Version 4.5 Enterprise Professional Smart Developer Smart Viewer Intellicus Technologies info@intellicus.com www.intellicus.com Copyright 2009

More information

Demystifying Intervals

Demystifying Intervals MWSUG 2017 Paper BB042 Demystifying Intervals Derek Morgan, PAREXEL International, Billerica, MA ABSTRACT Intervals have been a feature of base SAS for a long time, allowing SAS users to work with commonly

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL ADVANCED

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL ADVANCED EXCEL ADVANCED Overview OVERVIEW... 2 ADVANCED FORMULAS... 4 VIEW THE PROJECT... 4 Viewing Available Excel Functions... 5 Help with Functions... 6 TEXT FUNCTIONS... 7 Text Functions Used in this Section:...

More information

Eclipse Scheduler and Messaging. Release (Eterm)

Eclipse Scheduler and Messaging. Release (Eterm) Eclipse Scheduler and Messaging Release 8.6.2 (Eterm) Legal Notices 2007 Activant Solutions Inc. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Activant and the Activant

More information

Comindware Expression Language

Comindware Expression Language Comindware Expression Language Reference Guide 2013 Comindware Inc. Copyright Comindware, 2009-2013. All rights reserved. Comindware, Comindware Task Management, Comindware Tracker are registered trademarks

More information

Chapter 10 How to work with dates

Chapter 10 How to work with dates Chapter 10 How to work with dates Murach's PHP and MySQL, C10 2014, Mike Murach & Associates, Inc. Slide 1 Objectives Applied 1. Use any of the functions, methods, and techniques presented in this chapter

More information

Convert Date to Lilian Format (CEEDAYS) API

Convert Date to Lilian Format (CEEDAYS) API Convert Date to Lilian Format (CEEDAYS) API Required Parameter Group: 1 input_char_date Input VSTRING 2 picture_string Input VSTRING 3 output_lilian_date Output INT4 Omissible Parameter: 4 fc Output FEEDBACK

More information

2019 Educational Courses Catalog

2019 Educational Courses Catalog 2019 Educational Courses Catalog (STULZ USA),, U.S.A. Phone: +888.529.1266 Email: STULZTraining@stulz-ats.com www.stulz.com TRG-C2019 Rev. A 10/27/17 Important Information These training sessions alone

More information

Public Function randomdouble(lowerbound As Double, upperbound As Double) As Double On Error Resume Next

Public Function randomdouble(lowerbound As Double, upperbound As Double) As Double On Error Resume Next Table of Contents Introduction...1 Using VBA Functions...1 Accessing Visual Basic in Excel...2 Some Example Functions...3 Random Numbers...4 RandomDouble...4 randomint...4 Using the random numbers...5

More information

2016 Calendar of System Events and Moratoriums

2016 Calendar of System Events and Moratoriums 2016 Calendar of System Events and Moratoriums Table of Contents 1. Terminology and Information 2 2. Quarterly Scheduled System Upgrades and Moratoriums 3 3. Scheduled Infrastructure Window 4 4. Scheme

More information

The FORMAT procedure - more than just a VALUE statement Lawrence Heaton-Wright, Quintiles, Bracknell, UK

The FORMAT procedure - more than just a VALUE statement Lawrence Heaton-Wright, Quintiles, Bracknell, UK Paper TT10 The FORMAT procedure - more than just a VALUE statement Lawrence Heaton-Wright, Quintiles, Bracknell, UK ABSTRACT The FORMAT procedure is most frequently used to define formats for variables.

More information

BUP2 5/2 12/4/07 12:49 AM Page 1. Introduction

BUP2 5/2 12/4/07 12:49 AM Page 1. Introduction BUP2 5/2 12/4/07 12:49 AM Page 1 Introduction This booklet will give you easy to follow instructions to allow you to set your BUP2 Programmer to the Weekday/Weekend, (same times Monday - Friday, different

More information

NODE CONTROLLER PROGRAMMING GUIDE 2/2013 NODE CONTROLLER INTRODUCTION

NODE CONTROLLER PROGRAMMING GUIDE 2/2013 NODE CONTROLLER INTRODUCTION NODE CONTROLLER PROGRAMMING GUIDE 2/2013 NODE CONTROLLER INTRODUCTION THE PROGRAM MENU BUTTON ALLOWS YOU TO NAVIGATE BETWEEN MENUS. PRESS THE PROGRAM MENU BUTTON TO FIRST WAKE UP THE UNIT. DURING A SHORT

More information

New Permit Request Guide

New Permit Request Guide 2017 2018 New Permit Request Guide If this is the first time that you using our permit system you will need to register your group you will need to go to http://permits.peelschools.org and in the lower

More information

Document version Cohorts

Document version Cohorts Document version 1.1 2018 Cohorts Table of contents 1 Cohorts overview 2 Date of first visit 2.1 Predefined analyses 2.2 Daily and weekly cohorts 2.3 Filtering cohorts 2.4 Use Cases 3 Time since first

More information

MARKETPLACE FEEDS - ERROR CODES

MARKETPLACE FEEDS - ERROR CODES MARKETPLACE FEEDS - ERROR CODES About this document This document provides the possible error codes you may see on your processing report and what to do to resolve them. Error Codes Error 15 Invalid image

More information

WKn Chapter. Note to UNIX and OS/390 Users. Import/Export Facility CHAPTER 9

WKn Chapter. Note to UNIX and OS/390 Users. Import/Export Facility CHAPTER 9 117 CHAPTER 9 WKn Chapter Note to UNIX and OS/390 Users 117 Import/Export Facility 117 Understanding WKn Essentials 118 WKn Files 118 WKn File Naming Conventions 120 WKn Data Types 120 How the SAS System

More information