Chuck’s Academy of Function Academy An ACEware Webinar.

Slides:



Advertisements
Similar presentations
Debugging ACL Scripts.
Advertisements

Microsoft® Access® 2010 Training
Introducing JavaScript
© Paradigm Publishing, Inc Access 2010 Level 2 Unit 2Advanced Reports, Access Tools, and Customizing Access Chapter 8Integrating Access Data.
2010 Conference Highlights An ACEware Webinar. How did we decide what to include? Discussion during session: ie, number of questions Was there a lot of.
FileMaker Pro Tami Aune Technology Services Gustavus Adolphus College.
Enter formulas Use cell references Cell references identify individual cells or cell ranges in columns and rows. Cell references tell Excel where to look.
 Microsoft Excel is an electronic spreadsheet.  As with a paper spreadsheet, you can use Excel to organize your data into rows and columns and to perform.
Microsoft Office Illustrated Fundamentals Unit H: Using Complex Formulas, Functions, and Tables.
Now that you have researched some sources and learned how to format your paper, you need to know how to create your “Works Cited” page.
Student Manager Catalog Builder An ACEware Webinar.
XP New Perspectives on Microsoft Access 2002 Tutorial 61 Microsoft Access 2002 Tutorial 6 – Creating Custom Reports.
2440: 211 Interactive Web Programming JavaScript Fundamentals.
Student Manager 101 Registrations An ACEware Presentation.
SYSTEM ANALYSIS & DESIGN (DCT 2013)
Conversation Form l One path through a use case that emphasizes interactions between an actor and the system l Can show optional and repeated actions l.
Working with JavaScript. 2 Objectives Introducing JavaScript Inserting JavaScript into a Web Page File Writing Output to the Web Page Working with Variables.
Introduction to C Programming
Reporting Basics ( Cooking.. Reports … with Chuck ) An ACEware Webinar.
Billing & Invoicing An ACEware Presentation Follow the Money!
An ACEware Presentation.  Dashboard, PayGrabber & Find Them  Reports About Reports  Deactivating Reports  Recycling Reports & Queries  Query Tips.
Extreme Reporting An ACEware webinar February 28, 2008.
Reporting Aesthetics An ACEware Webinar 1:00-2:00 pm February 14 th, 2008.
ARIES User Group June 2, Today’s Presentation will cover:  Limitations to Ad Hoc report design in ARIES ReportExport  How to merge two ARIES reports.
ECA 228 Internet/Intranet Design I Intro to XML. ECA 228 Internet/Intranet Design I HTML markup language very loose standards browsers adjust for non-standard.
Ping Zhang 10/08/2010.  You can get data from the user (input) and display information to the user (output).  However, you must include the library.
Excel 2007 Part (2) Dr. Susan Al Naqshbandi
1 Microsoft Access 2002 Tutorial 5 – Enhancing a Table’s Design, and Creating Advanced Queries and Custom Forms.
Pemrograman Berbasis WEB XML part 2 -Aurelio Rahmadian- Sumber: w3cschools.com.
Computer Science 1000 Spreadsheets II Permission to redistribute these slides is strictly prohibited without permission.
Java Programming, 3e Concepts and Techniques Chapter 2 - Part 2 Creating a Java Application and Applet.
Intermediate Reporting An ACEware Webinar 1-2:30 pm, Thursday February 21st, 2008.
Credentials in Detail An ACEware Presentation Chuck HavlicekLauri Thompson.
Input, Output, and Processing
Intro and Review Welcome to Java. Introduction Java application programming Use tools from the JDK to compile and run programs. Videos at
Certificate Tracker Wizard An ACEware Webinar. Today’s Magic What is the Certificate Tracker Wizard?Getting the Wizard to make MagicRunning the WizardQuestions.
Lesson 12: Creating a Manual and Using Mail Merge.
Views Lesson 7.
XP Chapter 3 Succeeding in Business with Microsoft Office Access 2003: A Problem-Solving Approach 1 Analyzing Data For Effective Decision Making Chapter.
WHAT IS A DATABASE? A DATABASE IS A COLLECTION OF DATA RELATED TO A PARTICULAR TOPIC OR PURPOSE OR TO PUT IT SIMPLY A GENERAL PURPOSE CONTAINER FOR STORING.
Copyright © 2012 Pearson Education, Inc. Publishing as Pearson Addison-Wesley C H A P T E R 2 Input, Processing, and Output.
Lesson 10 - Mail Merge and Reviewing Documents Advanced Microsoft Word.
Chapter 3 – Variables and Arithmetic Operations. Variable Rules u Must declare all variable names –List name and type u Keep length to 31 characters –Older.
Penn Data Completion  Revised Student Database  Tables 1-7  Sign Off Procedure  Preschool Report – Aggregate.
1 12/4/1435 h Lecture 2 Programs and Programming Languages.
1 Printing in Python Every program needs to do some output This is usually to the screen (shell window) Later we’ll see graphics windows and external files.
Mr C Johnston ICT Teacher
Chuck’s Academy of Function Anatomy An ACEware Webinar Part 2.
Producing a Mail Merged Letter Step 1 Create an Access database for Names and Addresses you can use the ‘Customers’ template in Group Work. Enter the necessary.
Tableau Server URL Parameterization and Limits. Background This short set of material covers how Tableau Server Views can be invoked via URLs while passing.
Cycle Adjust & Benefits Issuance Live Webinar – MOWINS Release 2.13 Welcome Introductions Purpose of this webinar and recording Clinic Application - Other.
1 Designing Quick Reference Guides STC Webinar, Jan 25, 2012 Tom Johnson
XP New Perspectives on Microsoft Office Access 2003, Second Edition- Tutorial 5 1 Microsoft Office Access 2003 Tutorial 5 – Enhancing a Table’s Design.
Tim Borntreger, Director of Client Service. Agenda  Automation & Workflow  Configuring Field Display  Configuring Custom Links  Configuring Business.
1.1: Objects and Classes msklug.weebly.com. Agenda: Attendance Let’s get started What is Java? Work Time.
Chapter 4 Crystal Report Presenter: PEN PHIROM (MscIT) Phone:
Speech Peer and Self Edits. Overview By this point you should have a printed version of your second draft. The content of your speech should be solid.
Factoring Greatest Common Factor. Factoring We are going to start factoring today. I will take it easy on you in the beginning. Factoring is one skill.
LATEST PUNCTUATION CHECK RULES: UPDATE Punctuations can be your friend or enemy. Depending on how you use them, may change the entire meaning of.
Topics Designing a Program Input, Processing, and Output
Unit 16 – Database Systems
More on Oracle Scripts CSC 240 (Blum).
Other Kinds of Arrays Chapter 11
IS IT EFFECTIVE TO RUN ONLINE DATING BACKGROUND CHECKS YOURSELF?
Chapter 2 – Getting Started
Date Functions Farrokh Alemi, Ph.D.
Topics Designing a Program Input, Processing, and Output
Topics Designing a Program Input, Processing, and Output
Presentation transcript:

Chuck’s Academy of Function Academy An ACEware Webinar

Welcome from Jacksonville, FL!

Today we will dissect... What is a function? What can a function do? Writing report functions Function writing tips Embedding functions Common errors Function help

What is a function? Report functions are special tools or utilities that have a specific purpose

What can a function do? Display a field not in the report cursor Format information Perform calculations Do a specific task after the report runs

Writing Report Functions Functions consist of: –Name –Parameters –Punctuation

Begin with a function name followed by parenthesis ADDNAME ( ) NICEDATE ( ) GETCEU ( )

Add the details ADDNAME (nmid,”nmdphone”) GETCEU (rgcrse) NICEDATE (cobegdate)

How do we know what details are necessary? Student Manager Online Help!

From the online help... Function name and what it will do Where you can use the function You must supply these pieces Extras! Examples!

ADDNAME(nmid, ”nmdphone”) Function name Beginning parenthesis First required parameter (from which table do you want to pull the information) Comma Opening quotes Second parameter (which field do you want to pull) Closing quotes Ending parenthesis

A few tips to remember Parameters are always separated by commas Use opening and closing parentheses to begin and end parameters Single quotes or double quotes are acceptable

You can combine or embed functions Commonly you will need to include a field not in the cursor, and format the same field. NICEDATE(addcudfs(cocrse,”cudfd1”)) NICETIME(addcrse(number,'cocrsetm')) The rules are almost the same

Common errors Field doesn’t exist The field you want to use doesn’t exist in the cursor Use an “add” function to fix the problem Syntax error Usually mismatched quotes, missing parentheses or missing commas Check your punctuation! Operator/Operand Mismatch You’ve mixed numeric and character field types Read about the transform function!

Where will I find a list of functions?

Let’s look at “add” functions ADDCRSE( ) ADDREG( )

ADDCRSE (on an invoice)

ADDREG

How do you know if a field is in the cursor?

That’s plenty for today At our next meeting... Specific functions Specialty functions Date Stamping JustDoIt Questions?

We’ll be back in Manhattan, KS! Part 2 June 15th, 1:00 pm central time