Inquiry Formulas. student guide

Size: px
Start display at page:

Download "Inquiry Formulas. student guide"

Transcription

1 Inquiry Formulas student guide

2 NOTICE This documentation and the Axium software programs may only be used in accordance with the accompanying Ajera License Agreement. You may not use, copy, modify, or transfer the Axium programs or this documentation except as expressly provided in the Ajera License Agreement. AXIUM and the Axium software logo as it appears in this manual are registered Marks of XTS Software Corporation dba Axium. Microsoft and Windows are registered trademarks of Microsoft Corporation in the United States and/or other countries. All other company, product, or brand names mentioned herein, may be the trademarks of their respective owners. 2007, XTS Software Corporation dba Axium. All rights reserved. Copyright includes accompanying software and windows generated by the software.

3 Contents Goals of this session... 4 What you will learn... 4 What you will not learn... 4 About the Ajera database... 5 The Inquiry interface... 5 Inquiry formulas... 6 Basic formulas... 6 Advanced formulas... 6 Advanced custom formulas... 7 Briefly about SQL... 8 Useful SQL elements... 8 Producing a project detail report by date range Scenario Overview Creating the Project Detail History inquiry Creating the Project Totals and History inquiry Changing the Project Totals and History inquiry Changing the Project Detail History inquiry Changing the project detail report Scenario Overview Reformatting the Project Detail History inquiry Searching for a SQL function Creating a Month column using the SQL function formula Grouping and subtotaling information by columns Producing a payroll service input worksheet Scenario Overview Creating the Payroll Input Sheet inquiry Changing the Payroll Input Sheet inquiry Creating a Regular time column using a SQL function formula Creating an Overtime column using a SQL function formula Creating a Vacation column using a SQL function formula Creating a Sick time column using a SQL function formula Creating a Holiday column using a SQL function formula Verifying the formula columns and changing the inquiry Appendix A: Advanced custom formulas Use for static information Common SQL statements and clauses Inquiry Formulas 3

4 Goals of this session In this intermediate-level session of Inquiry, you will receive a brief introduction to Structured Query Language (SQL) functions and learn about the different kinds of Inquiry formulas. The session will then ease you into using formulas by stepping through building two complete sample inquiries. These inquiries illustrate how to use the SQL functions CASE and DATENAME to filter amount columns using field criteria in a formula and to sort through a data field using a string function. You will also learn how to use custom linking and grouping for subtotals. What you will learn In this session, you will learn how to: Use a CASE function in a simple-when form to evaluate one value and indicate whether a transaction is labor, expense, or consultant. Use a DATENAME function to extract the month from transaction dates. Change a CASE function from a simple-when form to a searched-when form to evaluate multiple values and indicate whether time entered is Regular, Overtime, Vacation, Sick, or Holiday. Note: This session uses CASE and DATENAME only as examples. There are many more SQL functions that you can use in Inquiry. What you will not learn In this session, you will not learn: SQL programming Structure of the Ajera database Axium recommends that you request the services of a SQL consultant or an Ajera consultant, respectively, if you are interested in learning those topics. 4 Inquiry Formulas

5 About the Ajera database About the Ajera database The Ajera database is written in Structured Query Language. SQL is a standard programming language designed for querying and modifying data and for managing databases. The Ajera database consists of interrelated tables, each one containing a specific kind of data, such as employee or project information. Each column in a table describes one characteristic of the table data. For example, a table about employee information contains columns for employee first name and employee last name. Each row in a table is a database record or table entry. In the employee table, for example, a row is an entry for an individual employee. Ajera automatically assigns each row a number. That number is a key field, a unique identifier of the database record. You cannot change key fields. Ajera uses key fields to link to or access information between database tables. For instance, when you enter information about a project in the Project Command Center, Ajera automatically creates a draft client invoice that uses a key field to identify the project. The Inquiry interface Inquiry accesses and retrieves information from the Ajera database and displays it in a table. Like the database, each row in the Inquiry table corresponds to a database record, and each column corresponds to an information field that makes up that database record. This row in the Employee inquiry represents a database record for Pat D. Hill. Employee type is one piece of information that makes up the database record. Inquiry Formulas 5

6 Inquiry formulas Inquiry formulas When you create a new inquiry column, you can either add it from the predefined list of columns, or create your own column by defining a formula for it. When you create a formula, you can use other existing formulas in the inquiry. These appear in the Available Columns area of the Formula Editor. The Available Columns area also contains the Current User Key, which allows you to display inquiry data pertaining only to the user. You can often write the formula you need by entering simple mathematical equations, which are called basic formulas. To enter more complicated formulas, which are called advanced or advanced custom formulas, you must either understand how to use SQL commands or request the services of an Ajera consultant. Axium supports basic and advanced formulas; it does not support advanced custom formulas. Basic formulas You can write many different inquiry formulas using basic mathematical operators and no SQL knowledge. These formulas create new columns by specifying mathematical operations between columns that already exist in the inquiry. For example, here are formulas for two new columns on the Project inquiry: [Billed]-[Cost] ([Billed]+[WIP])-[Cost] Advanced formulas When you write an advanced formula, you create a new column by defining relationships between columns that already exist in the inquiry. To view the predefined columns available in a specific inquiry, select Help > Contents > Inquiries > Standard inquiries and select that inquiry topic. To create advanced formulas, you do not need to know the structure of the Ajera database. You do, however, need to know how to use SQL functions. You use these functions to filter the data in the existing columns so that the new column displays exactly the information you want. Some commonly used functions include: LEFT RIGHT INSTRING DATEDIFF DATEADD MONTH UPPERCASE 6 Inquiry Formulas

7 Inquiry formulas Following is an example of an advanced formula for the Transaction - All inquiry: CASE [Activity Type] WHEN 'Labor' THEN [Employee] WHEN 'Expense' THEN [Activity] WHEN 'Consultant' THEN [Vendor] Adjustment' END WHEN 'None' THEN 'Invoice The formula uses the SQL function, CASE, to populate the new column as follows: If the Activity Type is Labor Expense Consultant None Then the formula returns the employee the activity the vendor the text Invoice Adjustment Advanced custom formulas Advanced custom formulas are not based on a relationship between existing columns in an inquiry. To write this type of formula, you must know the structure of the Ajera database and how to use SQL functions. For more information about these formulas, see Appendix A on page 37. Axium recommends that you request the services of an Ajera consultant if you are interested in using these formulas. Inquiry Formulas 7

8 Briefly about SQL Briefly about SQL SQL ignores insignificant white spaces, which allows you to format formulas for readability. Also, SQL is not case-sensitive, and its syntax allows you to insert line breaks wherever you want. SQL comes in many different versions. Ajera uses Microsoft SQL Server, which is based on Transact-SQL. To learn more, visit the Microsoft website. Useful SQL elements The following SQL functions and expressions are useful in getting the data you want with Inquiry. Axium recommends using them in advanced formulas. CASE Use the CASE function to evaluate a list of search conditions and return one of many possible results. CASE comes in two formats: Syntax Simple-when: Compares an expression to a set of simple expressions to determine the result. Searched-when: Evaluates a set of Boolean expressions to determine the result. simple-when CASE input_expression WHEN when_expression THEN result_expression [... n] [ ELSE else_result_expression ] END searched-when CASE WHEN Boolean_expression THEN result_expression [... n] [ ELSE else_result_expression ] END 8 Inquiry Formulas

9 Briefly about SQL DATENAME Use the DATENAME function to retrieve part of a specified date. Syntax DATENAME (datepart, date) AND and OR You can also use the AND and OR expressions to join two or more Boolean expressions. The expressions limit the data returned by the formula. The AND expression returns a result when both conditions are met. The OR expressions returns a result when at least one of the conditions is met. If a formula contains both AND and OR, the AND condition is automatically evaluated first. You can change the order by using parentheses. Syntax AND <Boolean_expression> AND <Boolean_expression> OR <Boolean_expression> OR <Boolean_expression> Inquiry Formulas 9

10 Producing a project detail report by date range Producing a project detail report by date range This first exercise introduces you to the simple-when format of CASE. CASE is similar to an IF statement, and is useful for categorizing data in inquiry formula columns. CASE compares a source value against a test value and returns the requested result when a match is found. In this exercise, the source value is an Ajera data field, and the test value is what you are looking for in the data field. The source and test values must be the same data types. If no match is found, CASE will return an ELSE result or a NULL value, depending on what is specified. CASE functions always end with the word END. Scenario In this scenario, your principal asks you for a project history with detail for a range of dates. Your principal wants the history to include only time and expense entries and to display the detail by the appropriate description for labor, expense, or consultant. Your goal is to create a custom inquiry that produces this information. Overview To create the new inquiry, you will: Create a custom inquiry named Project Detail History. Create a custom inquiry named Project Totals and History. Change the Project Totals and History inquiry. Change the Project Detail History inquiry by using a simple-when CASE function. 10 Inquiry Formulas

11 Producing a project detail report by date range Creating the Project Detail History inquiry First, create a custom inquiry based on the Transaction - All inquiry. 1. From the Inquiry menu, click Transaction > Transaction All. Note: The red text at the top of the inquiry discourages using it as a standalone inquiry. 2. In the Inquiry toolbar, click the Save As button and name this custom inquiry Project Detail History. 3. Click the close button in the top right of the inquiry. Inquiry Formulas 11

12 Producing a project detail report by date range Creating the Project Totals and History inquiry Now, create a custom inquiry based on the standard Project inquiry. 1. From the Inquiry menu, click Project > Project. 2. In the Inquiry toolbar, click the Save As button and name this custom inquiry Project Totals and History. Changing the Project Totals and History inquiry Change the Project Totals and History inquiry so that it displays only the information you want, and then link it to the Project Detail History inquiry. Links allow you to filter the information displayed in an inquiry. Add a date range so you can view data in the Project Detail History inquiry for a specific time period. Removing unneeded columns 1. Remove unneeded columns by right-clicking their column headings and clicking Remove column. In this exercise, leave only the following columns: Project ID Project Description Client Total Contract Amount Spent 2. In the Inquiry toolbar, click the Save button. 12 Inquiry Formulas

13 Producing a project detail report by date range Adding a link 1. Right-click the Spent column heading and click Properties. 2. On the Link tab, select Project Detail History from the Link list. 3. On the General tab, select Range prompt from the Date Range list. 4. Click OK to return to the Project Totals and History inquiry. Inquiry Formulas 13

14 Producing a project detail report by date range Changing the Project Detail History inquiry Change the Project Detail History inquiry so that it displays only the information you want, sort it so the most recent date appears first, and create columns by which to group and subtotal the data. Use SQL functions to create the formulas for the columns. Removing unneeded columns and sorting by date 1. Click the blue Spent amount for any project in the Project Totals and History inquiry, to return to the Project Detail History inquiry. 2. In the Save window that appears, click the Yes button. The Project Detail History inquiry appears. 3. Remove unneeded columns from the Project Detail History inquiry by rightclicking their column headings and clicking Remove column. In this exercise, leave only the following columns: Date Project ID & Description Phase ID & Description Units/Hours Spent Amount 4. In the Inquiry toolbar, click the Save button. 5. Click the Show All Rows button if it appears in the toolbar, so that you can see all the data. Note: The Show All Rows button appears in the toolbar only if the project has more than 2,500 rows of detail. In addition, the inquiry title will include this message: <Inquiry title> (first 2500 rows; click Show All Rows to show all) 14 Inquiry Formulas

15 Producing a project detail report by date range 6. Right-click the Date column heading and click Sort descending. 7. To add notes from timesheets and expense entries to the inquiry: Right-click the Spent Amount column heading and click Add a column to the right. On the General tab, select Notes from the Column list and type 3.00 in the Width field to make it wide enough for lengthy text. Click OK to return to the inquiry. Creating a description formula for transaction type In the Project Detail History inquiry, you will use a SQL function to create a description formula to display employee name for labor transactions, activity for expense transactions, and vendor name for consultant transactions. Group and subtotal by this information. 1. Right-click the Date column heading and click Add column to the left. 2. On the General tab: Select Formula in the Column list. Type Detail Description in the Heading field. Click the browse button for the Formula field, to open the Formula Editor window. To create the Detail Description formula, you need to use a CASE function, which is similar to using an IF statement. To accomplish this, you will use the sample advanced formula in Help, which provides the exact detail description you want and requires no modification. Note: If you need a simple-when CASE formula in the future, you can try copying and pasting the sample formula in Help, and then changing it to meet your criteria. 3. In the Formula Editor window, click the Help button. 4. On the Index tab, type formula in the keyword field, and double-click creating advanced. Inquiry Formulas 15

16 Producing a project detail report by date range 5. Highlight the sample advanced CASE formula in the Help file and copy it. 6. Paste the formula into the Formula field of the Formula Editor window. 7. Click the close button in the top right of the Help window. 8. Click the Verify button at the bottom of the Formula Editor window. 9. In the Formula verification window that appears, click OK. 10. Click OK in the Formula Editor window. 11. On the General tab, change the Width field to 2.00 in the Width field to make it wide enough for lengthy text. 12. Click OK on the General tab to view the new Detail Description column in the Project Detail History inquiry. 16 Inquiry Formulas

17 Producing a project detail report by date range Grouping and subtotaling information by columns Use the existing project and phase columns and the new Detail Description column to group and subtotal the information in the Project Detail History inquiry. 1. Right-click the Project ID & Description column heading and click Group expanded to group the information by this column. 2. Right-click the Phase ID & Description column heading and click Group expanded to group the phase group within the project group. 3. Right-click the Detail Description column heading and click Group expanded to group the detail group within the phase group. You now have subtotals for phase and for employee, activity, or vendor. 4. In the Inquiry toolbar, click the Back button to return to the Project Totals and History inquiry. 5. In the Save window that appears, click the Yes button. Inquiry Formulas 17

18 Producing a project detail report by date range 6. The Project Totals and History inquiry appears, displaying the blue All Dates link at the top. 7. Click the blue All Dates, which opens the Date Range window. 8. Select a date range, and click OK. 9. In the inquiry, click an amount in the Spent column to return to the Project Detail History inquiry. 10. In the Save window that appears, click the Yes button. 18 Inquiry Formulas

19 Producing a project detail report by date range 11. The Project Detail History inquiry appears, showing the detail only for the selected date range. 12. Click the close button in the top right of the inquiry. Inquiry Formulas 19

20 Changing the project detail report Changing the project detail report This second exercise introduces you to the DATENAME function. This function allows you to extract the month part from the date, which is useful if you want to group data by month, not by date. This exercise also shows you how to find a SQL function on the Microsoft website. Scenario In this scenario, your principal is pleased with the Project Detail History inquiry, but would like it grouped and subtotaled by month so that it is easier to read. Your goal is to change the inquiry so that it displays the information in this way. Overview To change the Project Detail History inquiry, you will: Reformat the inquiry. Search for a SQL function that meets your needs. Create a column using a DATENAME function. Group and subtotal the information by columns. 20 Inquiry Formulas

21 Changing the project detail report Reformatting the Project Detail History inquiry 1. Re-open the Project Totals and History inquiry to make additional changes. 2. In the inquiry, click an amount in the Spent column to return to the Project Detail History inquiry. 3. Right-click the Project ID & Description group and click Ungroup all. 4. Notice that because the Project Detail History inquiry displays detail for only one project at a time, the Project ID & Description column is unneeded. 5. Right-click the Project ID & Description column heading and click Remove column. Searching for a SQL function 1. To add a column that allows you to group the inquiry by month, not by date, you need a SQL function that will extract the month part from the date data. Unlike the preceding exercise, this is not a simple CASE function, which you can copy and paste from Help. Instead, you need to search the Internet for SQL functions. This exercise uses the Google browser: For the search type in SQL functions. Inquiry Formulas 21

22 Changing the project detail report Note: This session describes only one way to search for SQL functions. You can find valuable information about SQL programming on websites and in resources that are not discussed in this session. 2. Click the Built-in Functions (Transact-SQL) link for the Microsoft website. 3. Scroll down to Scalar Functions and click Date and Time Data Types and Functions. 22 Inquiry Formulas

23 Changing the project detail report 4. Click Functions That Get Date and Time Parts. 5. The DATENAME function is what you want. It will look at the transaction date and extract the name of the month, which will allow you to group and subtotal by month. Click DATENAME to review its syntax. Note: You can use the DATENAME function to get date totals for any period using any database date column. Inquiry Formulas 23

24 Changing the project detail report 6. Highlight and copy the syntax for DATENAME. Note: Later, you will change this formula in Inquiry s Formula Editor, replacing datepart with mm and date with [Date]. Creating a Month column using the SQL function formula 1. In the Project Detail History inquiry, right-click the Date column heading and click Add column to the left. 2. On the General tab: Select Formula from the Column list. Type Month in the Heading field. Click the browse button for the Formula field, to open the Formula Editor window. 3. Select the Show non-numeric columns check box so that the Date column is available for selection. 24 Inquiry Formulas

25 Changing the project detail report 4. Paste the SQL formula into the Formula field of the Formula Editor window and change it: Change datepart to mm. Highlight date in the formula and click Date in the Available Columns list. 5. Click the Verify button. 6. In the Formula verification window that appears, click OK. 7. Click OK in the Formula Editor window and the General tab to return to the inquiry, which displays the new Month column. Inquiry Formulas 25

26 Changing the project detail report Grouping and subtotaling information by columns 1. Right-click the Month column heading and click Group expanded. 2. Right-click the Phase ID & Description column heading and click Group expanded. 3. Right-click the Detail Description column heading and click Group expanded. 4. The Project Detail History inquiry now displays project to date with monthly subtotals. 5. In the Inquiry toolbar, click the Save button. 6. Click the close button in the top right of the inquiry. 26 Inquiry Formulas

27 Producing a payroll service input worksheet Producing a payroll service input worksheet This third exercise shows you how to change a simple-when CASE function into a searched-when CASE function. The searched-when format returns different results based on what is in the source field. It is useful when you are comparing more than one source value against a test value. Scenario In this scenario, your principal wants you to create a report for your firm s payroll service that lists total employee hours from timesheets. Your firm submits total hours from timesheets broken out into Regular, Overtime, Vacation, Sick, and Holiday for the pay period. The timesheets are entered weekly, and payroll is run twice a month. Your goal is to create a custom inquiry that makes the process of preparing these hours for the payroll service quick and easy. To do this, you will use SQL functions to filter the predefined column for Units/Hours in the Transaction Labor inquiry and add columns for the different types of hours. Overview To create the new inquiry, you will: Create a custom inquiry named Payroll Input Sheet. Change the Payroll Input Sheet inquiry. Use search-when CASE functions to create columns that display: o Regular time o Overtime o Vacation time o Sick time o Holiday time Verify the formula columns and change the inquiry again. Inquiry Formulas 27

28 Producing a payroll service input worksheet Creating the Payroll Input Sheet inquiry 1. From the Inquiry menu, click Transaction > Transaction Labor. Note: The red text at the top of the inquiry discourages using it as a standalone inquiry. 2. In the Inquiry toolbar, click the Save As button and name this custom inquiry Payroll Input Sheet. 3. In the Inquiry toolbar, click the Properties button. 4. On the Conditions tab, set the following conditions to eliminate rows that are not from timesheets and are not within the pay period you are reporting to the payroll service: Transaction Type equals sign (=) Entry. Date greater-than-or-equal-to sign (>=) <first day of pay period> (for example, February 1, 2009). Date less-than-or-equal-to sign (<=) <last day of pay period> (for example, February 28, 2009). 5. On the General tab, type a description and instructions in the Instructional Text field. For example: This input sheet provides timesheet hours for a range of dates broken out by regular, overtime, vacation, sick, and holiday. Enter the beginning and ending pay period dates on the Conditions tab. 6. Click OK. 28 Inquiry Formulas

29 Producing a payroll service input worksheet Changing the Payroll Input Sheet inquiry 1. Remove unneeded columns by right-clicking their column headings and clicking Remove column. In this exercise, leave only the following columns: Transaction Type Date Activity Employee Hours Type Units/Hours Note: After using the Hours Type and Activity columns to verify the formula columns later in this session, you will remove them from the inquiry. 2. In the Inquiry toolbar, click the Save button. 3. Right-click the Employee column heading and click Sort ascending. 4. To rename the Units/Hours column: Right-click the column heading and click Properties. On the General tab, type Total Hours in the Heading field and click OK. Creating a Regular time column using a SQL function formula 1. Right-click the Total Hours column heading and click Add column to the left. 2. On the General tab: Select Formula from the Column list. Type Regular in the Heading field. Click the browse button for the Formula field, to open the Formula Editor window. Inquiry Formulas 29

30 Producing a payroll service input worksheet 3. Select the Show non-numeric columns check box. 4. In the Formula field of the Formula Editor window, paste the sample advanced formula for CASE from Help (which you used in the first exercise). However, because you have more than one value for the CASE statement to evaluate, you need to change the Help sample syntax from simple-when form to searched-when form: Cut the first instance of WHEN and paste it after CASE. Highlight [Activity Type] and click Hours Type in the Available Columns list and type an equals sign (=). Change Labor to Regular, type AND, and click Activity in the Available Columns list. Type NOT IN( Vacation, Sick, Holiday ) THEN and click Units/Hours in the Available Columns list. Delete the remaining text. Type END. This formula will result in the column displaying only hours that have an Hours Type of Regular and that do not have an Activity of Vacation, Sick, or Holiday. 5. Click the Verify button. 6. In the Formula verification window that appears, click OK. 30 Inquiry Formulas

31 Producing a payroll service input worksheet 7. Highlight the verified formula and copy it; you will use this formula to create columns for overtime and vacation time. 8. Click OK in the Formula Editor window and the General tab to view the new Regular column in the inquiry. Scroll through the data and notice that the entries without any hours listed in the Regular column are those that have an Activity of Vacation, Holiday, or Sick, or those that have an Hours Type that is not Regular. Creating an Overtime column using a SQL function formula 1. Right-click the Total Hours column heading and click Add column to the left. 2. On the General tab: Select Formula in the Column list. Type Overtime in the Heading field. Click the browse button for the Formula field, to open the Formula Editor window. 3. In the Formula field of the Formula Editor window, paste the formula you used to create the Regular column, and change Regular to Premium 1. (Premium 1 is the Hours Type description for overtime.) This formula will result in the column displaying only hours that have an Hours Type of Premium 1 and that do not have an Activity of Vacation, Sick, or Holiday. Inquiry Formulas 31

32 Producing a payroll service input worksheet 4. Click OK in the Formula Editor window and the General tab to view the new Overtime column in the inquiry and scroll through the data. Creating a Vacation column using a SQL function formula 1. Right-click the Total Hours column heading and click Add column to the left. 2. On the General tab: Select Formula in the Column list. Type Vacation in the Heading field. Click the browse button for the Formula field, to open the Formula Editor window. 3. In the Formula field of the Formula Editor window, paste the formula used to create Regular time and change it: Delete [Hours Type]= Regular AND Change NOT IN to an equals sign (=) Change ( Vacation, Sick, Holiday ) to Vacation This formula will result in the column displaying only hours that have an Activity of Vacation. 4. Click the Verify button. 32 Inquiry Formulas

33 Producing a payroll service input worksheet 5. In the Formula verification window that appears, click OK. 6. Highlight the verified formula and copy it; you will use this formula to create columns for sick time and holiday time. 7. Click OK in the Formula Editor window and the General tab to view the new Vacation column in the inquiry and scroll through the data. Creating a Sick time column using a SQL function formula 1. Right-click the Total Hours column heading and click Add column to the left. 2. On the General tab: Select Formula in the Column list. Type Sick in the Heading field. 3. Click the browse button for the Formula field, to open the Formula Editor window. 4. In the Formula field of the Formula Editor window, paste the formula you used to create the Vacation column and change Vacation to Sick. This formula will result in the column displaying only hours that have an Activity of Sick. 5. Click OK in the Formula Editor window and the General tab to view the new Sick column in the inquiry and scroll through the data. Inquiry Formulas 33

34 Producing a payroll service input worksheet Creating a Holiday column using a SQL function formula 1. Right-click the Total Hours column heading and click Add column to the left. 2. On the General tab: Select Formula in the Column list. Type Holiday in the Heading field. 3. Click the browse button for the Formula field, to open the Formula Editor window. 4. In the Formula field of the Formula Editor window, paste the formula you used to create the Vacation column, and change Vacation to Holiday. This formula will result in the column displaying only hours that have an Activity of Holiday. 34 Inquiry Formulas

35 Producing a payroll service input worksheet 5. Click OK in the Formula Editor window and the General tab to view the new Holiday column in the inquiry and scroll through the data. Verifying the formula columns and changing the inquiry 1. In the inquiry, compare the Hours Type and Activity columns with what appears in the Regular, Overtime, Vacation, Sick, and Holiday columns and notice that their formulas are correct. 2. Remove the following columns by right-clicking the column heading and clicking Remove column for each column: Transaction Type Activity Hours Type Inquiry Formulas 35

36 Producing a payroll service input worksheet 3. Right-click the Date column and click Properties. 4. On the General tab: Change the Width to 1.50 inches. Click OK. 5. Right-click the Employee column and click Group collapsed. 6. The inquiry now reports hours for each payroll category for any range of dates, which you can select in the Inquiry Properties window. 36 Inquiry Formulas

37 Appendix A Appendix A: Advanced custom formulas If you are an advanced user and have experience with SQL, you may be interested in advanced custom formulas. When you create a formula, you can use other existing formulas in the inquiry. These appear in the Available Columns area of the Formula Editor. The Available Columns area also contains the Current User Key, which allows you to display inquiry data pertaining only to the user. Warning! When you create advanced custom formulas, be aware that when Ajera s database structure or logic changes, advanced custom formulas may cease to work correctly. These formulas may produce an error or, worse, return incorrect results without alerting you of any problems. For example, if you create an advanced custom formula that calculates an activity type total using the current activity types, and then a future version of Ajera s database includes new activity types, that formula then produces an inaccurate amount because it is calculated without the new activity types. Also, multiple custom formulas on one inquiry may cause performance issues. Use for static information You may choose to write an advanced custom formula when you need to create an entirely new column that is not based on a relationship between existing columns. To write this kind of formulas, you must know the structure of the Ajera database. To determine the database structure, you can export your data into SQL Server Management Studio Tool. Because Axium does not notify you when it changes Ajera s database structure or logic, it is best to use advanced custom formulas to retrieve static information from different inquiries, or tables, within the database, rather than dynamic information. Sample formulas Following are two sample formulas that retrieve static information from different database tables: You want a column for the project manager s phone number on the Project inquiry. To do this, you must create a custom formula on the Project inquiry referencing the phone number field from the Employee database table: SELECT vecphone1 FROM AxVec WHERE veckey = [Project Manager Key] You want to apply a date range to an advanced custom formula. To do this, the formula must use the SQL Min/Max function, and the function must contain these dates: and For example: SELECT (hours) = sum(tunits) FROM axtransaction WHERE ttype in (0,2) and tiscurrent = 1 AND tdate BETWEEN ' ' and ' ' You must close the Properties window and reopen it for the Date Range field to appear. Inquiry Formulas 37

38 Appendix A Common SQL statements and clauses The most common operation in SQL is the query. Queries retrieve data from one or more database tables or expressions based on specific criteria. The following SQL statements and clauses are often used in queries. SELECT Use the SELECT statement to specify the columns from which you want to retrieve data. Standard SELECT statements do not affect the database. The SELECT statement is complex, and you can use it with a variety of functions and clauses, such as FROM, WHERE, and GROUP BY. Syntax SELECT statement ::= [WITH <common_table_expression> [,...n]] <query_expression> [ ORDER BY { order_by_expression column_position [ ASC DESC ] } [,...n ] ] [ COMPUTE { { AVG COUNT MAX MIN SUM } ( expression ) } [,...n ] [ BY expression [,...n ] ] ] [ <FOR Clause>] [ OPTION ( <query_hint> [,...n ] ) ] <query_expression> ::= { <query_specification> ( <query_expression> ) } [ { UNION [ ALL ] EXCEPT INTERSECT } <query_specification> ( <query_expression> ) [...n ] ] <query_specification> ::= SELECT [ ALL DISTINCT ] [TOP expression [PERCENT] [ WITH TIES ] ] < select_list > [ INTO new_table ] [ FROM { <table_source> } [,...n ] ] [ WHERE <search_condition> ] [ GROUP BY [ ALL ] group_by_expression [,...n ] [ WITH { CUBE ROLLUP } ] ] [ HAVING < search_condition > ] 38 Inquiry Formulas

39 Appendix A FROM Use the FROM clause in a SELECT statement to specify the table or view from which you want to retrieve data. Syntax [ FROM { <table_source> } [,...n ] ] <table_source> ::= { table_or_view_name [ [ AS ] table_alias ] [ <tablesample_clause> ] [ WITH ( < table_hint > [ [, ]...n ] ) ] rowset_function [ [ AS ] table_alias ] [ ( bulk_column_alias [,...n ] ) ] user_defined_function [ [ AS ] table_alias ] [ (column_alias [,...n ] ) ] OPENXML <openxml_clause> derived_table [ AS ] table_alias [ ( column_alias [,...n ] ) ] <joined_table> <pivoted_table> [ [ AS ] table_alias ( expression [,...n ] ) [ [ AS ] table_alias ] [ (column_alias [,...n ] ) ]}<tablesample_clause> ::= TABLESAMPLE [SYSTEM] ( sample_number [ PERCENT ROWS ] ) [ REPEATABLE ( repeat_seed ) ] <joined_table> ::= { <table_source> <join_type> <table_source> ON <search_condition> <table_source> CROSS JOIN <table_source> left_table_source { CROSS OUTER } APPLY right_table_source [ ( ] <joined_table> [ ) ] } <join_type> ::= [ { INNER { { LEFT RIGHT FULL } [ OUTER ] } } [ <join_hint> ] ] JOIN <pivoted_table> ::= table_source PIVOT <pivot_clause> table_alias <pivot_clause> ::= ( aggregate_function ( value_column ) FOR pivot_column IN ( <column_list> ) ) <unpivoted_table> ::= table_source UNPIVOT <unpivot_clause> table_alias Inquiry Formulas 39

40 Appendix A <unpivot_clause> ::= ( value_column FOR pivot_column IN ( <column_list> ) ) <column_list> ::= column_name [,...n ] WHERE Use the WHERE clause in a SELECT statement to create a search condition that limits the rows displayed by a query. Syntax WHERE <search_condition> GROUP BY Use the GROUP BY clause in a SELECT statement to specify how the output rows are organized in the query. Syntax [ GROUP BY [ ALL ] group_by_expression [,...n ] [ WITH { CUBE ROLLUP } ] ] 40 Inquiry Formulas

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide Decision Support AITS University Administration Web Intelligence Rich Client 4.1 User Guide 2 P age Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence

More information

Ajera 7 Installation Guide

Ajera 7 Installation Guide Ajera 7 Installation Guide Ajera 7 Installation Guide NOTICE This documentation and the Axium software programs may only be used in accordance with the accompanying Axium Software License and Services

More information

IRA Pivot Table Review and Using Analyze to Modify Reports. For help, email [email protected]

IRA Pivot Table Review and Using Analyze to Modify Reports. For help, email Financial.Reports@dartmouth.edu IRA Pivot Table Review and Using Analyze to Modify Reports 1 What is a Pivot Table? A pivot table takes rows of detailed data (such as the lines in a downloadable table) and summarizes them at a higher

More information

Unit 10: Microsoft Access Queries

Unit 10: Microsoft Access Queries Microsoft Access Queries Unit 10: Microsoft Access Queries Introduction Queries are a fundamental means of accessing and displaying data from tables. Queries used to view, update, and analyze data in different

More information

Microsoft Dynamics GP. Extender User s Guide

Microsoft Dynamics GP. Extender User s Guide Microsoft Dynamics GP Extender User s Guide Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed in this document,

More information

Excel Database Management Microsoft Excel 2003

Excel Database Management Microsoft Excel 2003 Excel Database Management Microsoft Reference Guide University Technology Services Computer Training Copyright Notice Copyright 2003 EBook Publishing. All rights reserved. No part of this publication may

More information

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com Sage 500 ERP Intelligence Reporting Getting Started Guide 27.11.2012 Table of Contents 1.0 Getting started 3 2.0 Managing your reports 10 3.0 Defining report properties 18 4.0 Creating a simple PivotTable

More information

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc.

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2011 Advanced Crystal Reports TeachUcomp, Inc. it s all about you Copyright: Copyright 2011 by TeachUcomp, Inc. All rights reserved.

More information

Tips and Tricks SAGE ACCPAC INTELLIGENCE

Tips and Tricks SAGE ACCPAC INTELLIGENCE Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,

More information

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 Table of Contents Part I Creating a Pivot Table Excel Database......3 What is a Pivot Table...... 3 Creating Pivot Tables

More information

Tutorial 3. Maintaining and Querying a Database

Tutorial 3. Maintaining and Querying a Database Tutorial 3 Maintaining and Querying a Database Microsoft Access 2010 Objectives Find, modify, and delete records in a table Learn how to use the Query window in Design view Create, run, and save queries

More information

Microsoft Office 2010

Microsoft Office 2010 Access Tutorial 3 Maintaining and Querying a Database Microsoft Office 2010 Objectives Find, modify, and delete records in a table Learn how to use the Query window in Design view Create, run, and save

More information

FRONTPAGE FORMS... ... ...

FRONTPAGE FORMS... ... ... tro FRONTPAGE FORMS........................................ CREATE A FORM.................................................................................. 1. Open your web and create a new page. 2. Click

More information

PeopleSoft Query Training

PeopleSoft Query Training PeopleSoft Query Training Overview Guide Tanya Harris & Alfred Karam Publish Date - 3/16/2011 Chapter: Introduction Table of Contents Introduction... 4 Navigation of Queries... 4 Query Manager... 6 Query

More information

for Sage 100 ERP Business Insights Overview Document

for Sage 100 ERP Business Insights Overview Document for Sage 100 ERP Business Insights Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

Monthly Payroll to Finance Reconciliation Report: Access and Instructions

Monthly Payroll to Finance Reconciliation Report: Access and Instructions Monthly Payroll to Finance Reconciliation Report: Access and Instructions VCU Reporting Center... 2 Log in... 2 Open Folder... 3 Other Useful Information: Copying Sheets... 5 Creating Subtotals... 5 Outlining

More information

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix Jennifer Clegg, SAS Institute Inc., Cary, NC Eric Hill, SAS Institute Inc., Cary, NC ABSTRACT Release 2.1 of SAS

More information

Crystal Reports Payroll Exercise

Crystal Reports Payroll Exercise Crystal Reports Payroll Exercise Objective This document provides step-by-step instructions on how to build a basic report on Crystal Reports XI on the MUNIS System supported by MAISD. The exercise will

More information

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Consolidate Data in Multiple Worksheets Example data is saved under Consolidation.xlsx workbook under ProductA through ProductD

More information

Outlook Managing Your Items

Outlook Managing Your Items Course Description Managing your items is essential if you want Outlook to run as efficiently and effectively as possible. As with any filing system the longer you put off doing anything the larger the

More information

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

More information

The LSUHSC N.O. Email Archive

The LSUHSC N.O. Email Archive The LSUHSC N.O. Email Archive Introduction The LSUHSC N.O. email archive permanently retains a copy of all email items sent and received by LSUHSC N.O. Academic email users. Email items will be accessible

More information

Time & Attendance Manager Basics

Time & Attendance Manager Basics Time & Attendance Manager Basics Handout Manual V03261272136EZ18CMB2 2012 ADP, Inc. ADP s Trademarks The ADP Logo, ADP Workforce Now, and ezlabormanager are registered trademarks of ADP, Inc. In the Business

More information

MS Excel: Analysing Data using Pivot Tables

MS Excel: Analysing Data using Pivot Tables Centre for Learning and Academic Development (CLAD) Technology Skills Development Team MS Excel: Analysing Data using Pivot Tables www.intranet.birmingham.ac.uk/itskills MS Excel: Analysing Data using

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Running, Copying and Pasting reports... 4 Creating and linking a report... 5 Auto e-mailing reports...

More information

Microsoft Access Rollup Procedure for Microsoft Office 2007. 2. Click on Blank Database and name it something appropriate.

Microsoft Access Rollup Procedure for Microsoft Office 2007. 2. Click on Blank Database and name it something appropriate. Microsoft Access Rollup Procedure for Microsoft Office 2007 Note: You will need tax form information in an existing Excel spreadsheet prior to beginning this tutorial. 1. Start Microsoft access 2007. 2.

More information

Enterprise Reporting Advanced Web Intelligence Training. Enterprise Reporting Services

Enterprise Reporting Advanced Web Intelligence Training. Enterprise Reporting Services Enterprise Reporting Advanced Web Intelligence Training Enterprise Reporting Services Table of Contents Chapter Page 1 Overview 4 2 Web Intelligence Access 8 3 BI Launch Pad Navigation 12 4 Nested Query

More information

Business Insight Report Authoring Getting Started Guide

Business Insight Report Authoring Getting Started Guide Business Insight Report Authoring Getting Started Guide Version: 6.6 Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software,

More information

Advanced Query for Query Developers

Advanced Query for Query Developers for Developers This is a training guide to step you through the advanced functions of in NUFinancials. is an ad-hoc reporting tool that allows you to retrieve data that is stored in the NUFinancials application.

More information

Access Queries (Office 2003)

Access Queries (Office 2003) Access Queries (Office 2003) Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk 293-4444 x 1 oit.wvu.edu/support/training/classmat/db/ Instructor: Kathy

More information

Excel for Data Cleaning and Management

Excel for Data Cleaning and Management Excel for Data Cleaning and Management Background Information This workshop is designed to teach skills in Excel that will help you manage data from large imports and save them for further use in SPSS

More information

Microsoft Dynamics GP. SmartList Builder User s Guide With Excel Report Builder

Microsoft Dynamics GP. SmartList Builder User s Guide With Excel Report Builder Microsoft Dynamics GP SmartList Builder User s Guide With Excel Report Builder Copyright Copyright 2008 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility

More information

Microsoft Access 3: Understanding and Creating Queries

Microsoft Access 3: Understanding and Creating Queries Microsoft Access 3: Understanding and Creating Queries In Access Level 2, we learned how to perform basic data retrievals by using Search & Replace functions and Sort & Filter functions. For more complex

More information

Creating QBE Queries in Microsoft SQL Server

Creating QBE Queries in Microsoft SQL Server Creating QBE Queries in Microsoft SQL Server When you ask SQL Server or any other DBMS (including Access) a question about the data in a database, the question is called a query. A query is simply a question

More information

Sage Intelligence Reporting. Microsoft FRx to Sage Intelligence Report Designer Add-In Conversion Guide. Sage 100 ERP

Sage Intelligence Reporting. Microsoft FRx to Sage Intelligence Report Designer Add-In Conversion Guide. Sage 100 ERP Sage Intelligence Reporting Microsoft FRx to Sage Intelligence Report Designer Add-In Conversion Guide Sage 100 ERP The software described in this document is protected by copyright, and may not be copied

More information

Context-sensitive Help Guide

Context-sensitive Help Guide MadCap Software Context-sensitive Help Guide Flare 11 Copyright 2015 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this

More information

Step One. Step Two. Step Three USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013)

Step One. Step Two. Step Three USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013) USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013) This guide was created to allow agencies to set up the e-data Tech Support project s Microsoft Access template. The steps below have been

More information

A Quick Tour of F9 1

A Quick Tour of F9 1 A Quick Tour of F9 1 Table of Contents I. A Quick Tour of F9... 3 1. Getting Started... 3 2. Quick Trial Balance... 7 3. A More Dynamic Table Report... 10 II. The Fundamental F9 Formula... 14 The GL Formula...

More information

Analyzing Excel Data Using Pivot Tables

Analyzing Excel Data Using Pivot Tables NDUS Training and Documentation Analyzing Excel Data Using Pivot Tables Pivot Tables are interactive worksheet tables you can use to quickly and easily summarize, organize, analyze, and compare large amounts

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: 1.800.529.0165 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This course is designed to deliver the fundamentals of SQL and PL/SQL along

More information

Oracle SQL. Course Summary. Duration. Objectives

Oracle SQL. Course Summary. Duration. Objectives Oracle SQL Course Summary Identify the major structural components of the Oracle Database 11g Create reports of aggregated data Write SELECT statements that include queries Retrieve row and column data

More information

Sample- for evaluation only. Introductory Access. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc.

Sample- for evaluation only. Introductory Access. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2010 Introductory Access TeachUcomp, Inc. it s all about you Copyright: Copyright 2010 by TeachUcomp, Inc. All rights reserved. This

More information

Time & Attendance Supervisor Basics for ADP Workforce Now. Automatic Data Processing, LLC ES Canada

Time & Attendance Supervisor Basics for ADP Workforce Now. Automatic Data Processing, LLC ES Canada Time & Attendance Supervisor Basics for ADP Workforce Now Automatic Data Processing, LLC ES Canada ADP s Trademarks The ADP Logo, ADP, ADP Workforce Now and IN THE BUSINESS OF YOUR SUCCESS are registered

More information

2874CD1EssentialSQL.qxd 6/25/01 3:06 PM Page 1 Essential SQL Copyright 2001 SYBEX, Inc., Alameda, CA www.sybex.com

2874CD1EssentialSQL.qxd 6/25/01 3:06 PM Page 1 Essential SQL Copyright 2001 SYBEX, Inc., Alameda, CA www.sybex.com Essential SQL 2 Essential SQL This bonus chapter is provided with Mastering Delphi 6. It is a basic introduction to SQL to accompany Chapter 14, Client/Server Programming. RDBMS packages are generally

More information

MODULE 2: SMARTLIST, REPORTS AND INQUIRIES

MODULE 2: SMARTLIST, REPORTS AND INQUIRIES MODULE 2: SMARTLIST, REPORTS AND INQUIRIES Module Overview SmartLists are used to access accounting data. Information, such as customer and vendor records can be accessed from key tables. The SmartList

More information

BUSINESS OBJECTS XI WEB INTELLIGENCE

BUSINESS OBJECTS XI WEB INTELLIGENCE BUSINESS OBJECTS XI WEB INTELLIGENCE SKW USER GUIDE (Skilled Knowledge Worker) North Carolina Community College Data Warehouse Last Saved: 3/31/10 9:40 AM Page 1 of 78 Contact Information Helpdesk If you

More information

Advanced BIAR Participant Guide

Advanced BIAR Participant Guide State & Local Government Solutions Medicaid Information Technology System (MITS) Advanced BIAR Participant Guide October 28, 2010 HP Enterprise Services Suite 100 50 West Town Street Columbus, OH 43215

More information

HRS 750: UDW+ Ad Hoc Reports Training 2015 Version 1.1

HRS 750: UDW+ Ad Hoc Reports Training 2015 Version 1.1 HRS 750: UDW+ Ad Hoc Reports Training 2015 Version 1.1 Program Services Office & Decision Support Group Table of Contents Create New Analysis... 4 Criteria Tab... 5 Key Fact (Measurement) and Dimension

More information

Silect Software s MP Author

Silect Software s MP Author Silect MP Author for Microsoft System Center Operations Manager Silect Software s MP Author User Guide September 2, 2015 Disclaimer The information in this document is furnished for informational use only,

More information

Microsoft Excel 2010 Part 3: Advanced Excel

Microsoft Excel 2010 Part 3: Advanced Excel CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 3: Advanced Excel Winter 2015, Version 1.0 Table of Contents Introduction...2 Sorting Data...2 Sorting

More information

Querying Microsoft SQL Server (20461) H8N61S

Querying Microsoft SQL Server (20461) H8N61S HP Education Services course data sheet Querying Microsoft SQL Server (20461) H8N61S Course Overview In this course, you will learn the technical skills required to write basic Transact-SQL (T-SQL) queries

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Creating Interactive Dashboards and Using Oracle Business Intelligence Answers Purpose This tutorial shows you how to build, format, and customize Oracle Business

More information

Using Excel for Analyzing Survey Questionnaires Jennifer Leahy

Using Excel for Analyzing Survey Questionnaires Jennifer Leahy University of Wisconsin-Extension Cooperative Extension Madison, Wisconsin PD &E Program Development & Evaluation Using Excel for Analyzing Survey Questionnaires Jennifer Leahy G3658-14 Introduction You

More information

Time & Expense Entry WalkThrough

Time & Expense Entry WalkThrough PRACTICE CS Time & Expense Entry WalkThrough Version 2014.x.x TL 27573a (01/16/2015) Copyright Information Text copyright 2004-2015 by Thomson Reuters. All rights reserved. Video display images copyright

More information

Departmental Reporting in Microsoft Excel for Sage 50 Accounts

Departmental Reporting in Microsoft Excel for Sage 50 Accounts al Reporting in Microsoft Excel for Sage 50 Accounts 1 Introduction Whilst Sage 50 Accounts does already offer integrated Excel reporting functionality, we found that it was often missing the flexibility

More information

Ajera 8 Installation Guide

Ajera 8 Installation Guide Ajera 8 Installation Guide Ajera 8 Installation Guide NOTICE This documentation and the Axium software programs may only be used in accordance with the accompanying Axium Software License and Services

More information

Course 20461C: Querying Microsoft SQL Server Duration: 35 hours

Course 20461C: Querying Microsoft SQL Server Duration: 35 hours Course 20461C: Querying Microsoft SQL Server Duration: 35 hours About this Course This course is the foundation for all SQL Server-related disciplines; namely, Database Administration, Database Development

More information

Creating Custom Crystal Reports Tutorial

Creating Custom Crystal Reports Tutorial Creating Custom Crystal Reports Tutorial 020812 2012 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Introduction... 3 What is Pastel Partner (BIC)?... 3 System Requirements... 4 Getting Started Guide... 6 Standard Reports Available... 6 Accessing the Pastel Partner (BIC) Reports...

More information

REP200 Using Query Manager to Create Ad Hoc Queries

REP200 Using Query Manager to Create Ad Hoc Queries Using Query Manager to Create Ad Hoc Queries June 2013 Table of Contents USING QUERY MANAGER TO CREATE AD HOC QUERIES... 1 COURSE AUDIENCES AND PREREQUISITES...ERROR! BOOKMARK NOT DEFINED. LESSON 1: BASIC

More information

SQL Server 2014 BI. Lab 04. Enhancing an E-Commerce Web Application with Analysis Services Data Mining in SQL Server 2014. Jump to the Lab Overview

SQL Server 2014 BI. Lab 04. Enhancing an E-Commerce Web Application with Analysis Services Data Mining in SQL Server 2014. Jump to the Lab Overview SQL Server 2014 BI Lab 04 Enhancing an E-Commerce Web Application with Analysis Services Data Mining in SQL Server 2014 Jump to the Lab Overview Terms of Use 2014 Microsoft Corporation. All rights reserved.

More information

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices.

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices. MySQL for Excel Abstract This is the MySQL for Excel Reference Manual. It documents MySQL for Excel 1.3 through 1.3.6. Much of the documentation also applies to the previous 1.2 series. For notes detailing

More information

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins)

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins) Lesson 07: MS ACCESS - Handout Handout Introduction to database (30 mins) Microsoft Access is a database application. A database is a collection of related information put together in database objects.

More information

Creating Dashboards for Microsoft Project Server 2010

Creating Dashboards for Microsoft Project Server 2010 Creating Dashboards for Microsoft Project Server 2010 Authors: Blaise Novakovic, Jean-Francois LeSaux, Steven Haden, Microsoft Consulting Services Information in the document, including URL and other Internet

More information

Getting Started Guide SAGE ACCPAC INTELLIGENCE

Getting Started Guide SAGE ACCPAC INTELLIGENCE Getting Started Guide SAGE ACCPAC INTELLIGENCE Table of Contents Introduction... 1 What is Sage Accpac Intelligence?... 1 What are the benefits of using Sage Accpac Intelligence?... 1 System Requirements...

More information

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle University Contact Us: + 38516306373 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training delivers the

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

MOC 20461C: Querying Microsoft SQL Server. Course Overview

MOC 20461C: Querying Microsoft SQL Server. Course Overview MOC 20461C: Querying Microsoft SQL Server Course Overview This course provides students with the knowledge and skills to query Microsoft SQL Server. Students will learn about T-SQL querying, SQL Server

More information

Microsoft Dynamics GP. Cash Flow Management

Microsoft Dynamics GP. Cash Flow Management Microsoft Dynamics GP Cash Flow Management Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed in this document,

More information

Pastel Evolution BIC. Getting Started Guide

Pastel Evolution BIC. Getting Started Guide Pastel Evolution BIC Getting Started Guide Table of Contents System Requirements... 4 How it Works... 5 Getting Started Guide... 6 Standard Reports Available... 6 Accessing the Pastel Evolution (BIC) Reports...

More information

Timeless Time and Expense Version 3.0. Copyright 1997-2009 MAG Softwrx, Inc.

Timeless Time and Expense Version 3.0. Copyright 1997-2009 MAG Softwrx, Inc. Timeless Time and Expense Version 3.0 Timeless Time and Expense All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

Introduction to Microsoft Access 2010

Introduction to Microsoft Access 2010 Introduction to Microsoft Access 2010 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

EXCEL 2007. Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development

EXCEL 2007. Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development Information Technology MS Office Excel 2007 Users Guide EXCEL 2007 Using Excel for Data Query & Management IT Training & Development (818) 677-1700 [email protected] http://www.csun.edu/training TABLE

More information

SHAREPOINT 2010 FOUNDATION FOR END USERS

SHAREPOINT 2010 FOUNDATION FOR END USERS SHAREPOINT 2010 FOUNDATION FOR END USERS WWP Training Limited Page i SharePoint Foundation 2010 for End Users Fundamentals of SharePoint... 6 Accessing SharePoint Foundation 2010... 6 Logging in to your

More information

BizTalk Server 2006. Business Activity Monitoring. Microsoft Corporation Published: April 2005. Abstract

BizTalk Server 2006. Business Activity Monitoring. Microsoft Corporation Published: April 2005. Abstract BizTalk Server 2006 Business Activity Monitoring Microsoft Corporation Published: April 2005 Abstract This paper provides a detailed description of two new Business Activity Monitoring (BAM) features in

More information

Microsoft Dynamics CRM 4.0 User s Guide

Microsoft Dynamics CRM 4.0 User s Guide Microsoft Dynamics CRM 4.0 User s Guide i Microsoft Dynamics CRM 4.0 User s Guide Copyright Information in this document, including URL and other Internet Web site references, is subject to change without

More information

Business Objects. Report Writing - CMS Net and CCS Claims

Business Objects. Report Writing - CMS Net and CCS Claims Business Objects Report Writing - CMS Net and CCS Claims Updated 11/28/2012 1 Introduction/Background... 4 Report Writing (Ad-Hoc)... 4 Requesting Report Writing Access... 4 Java Version... 4 Create A

More information

Produced by Flinders University Centre for Educational ICT. PivotTables Excel 2010

Produced by Flinders University Centre for Educational ICT. PivotTables Excel 2010 Produced by Flinders University Centre for Educational ICT PivotTables Excel 2010 CONTENTS Layout... 1 The Ribbon Bar... 2 Minimising the Ribbon Bar... 2 The File Tab... 3 What the Commands and Buttons

More information

REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS

REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS 28-APRIL-2015 TABLE OF CONTENTS Select an item in the table of contents to go to that topic in the document. USE GET HELP NOW & FAQS... 1 SYSTEM

More information

MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES

MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES MICROSOFT OFFICE 2007 MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES Exploring Access Creating and Working with Tables Finding and Filtering Data Working with Queries and Recordsets Working with Forms Working

More information

Microsoft Access 2010 Part 1: Introduction to Access

Microsoft Access 2010 Part 1: Introduction to Access CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3

More information

SPSS: Getting Started. For Windows

SPSS: Getting Started. For Windows For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 Introduction to SPSS Tutorials... 3 1.2 Introduction to SPSS... 3 1.3 Overview of SPSS for Windows... 3 Section 2: Entering

More information

User Guide. Microsoft Dynamics GP 10 Upgrade. Understanding and using new features and functionality within Dynamics GP 10

User Guide. Microsoft Dynamics GP 10 Upgrade. Understanding and using new features and functionality within Dynamics GP 10 User Guide Microsoft Dynamics GP 10 Upgrade Understanding and using new features and functionality within Dynamics GP 10 Version 3.7 (Spring 2009) Microsoft Dynamics GP 10 Upgrade Copyright Copyright 1997-2009

More information

Introduction to Microsoft Access 2013

Introduction to Microsoft Access 2013 Introduction to Microsoft Access 2013 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

Creating Database Tables in Microsoft SQL Server

Creating Database Tables in Microsoft SQL Server Creating Database Tables in Microsoft SQL Server Microsoft SQL Server is a relational database server that stores and retrieves data for multi-user network-based applications. SQL Server databases are

More information

Sage Abra SQL HRMS Reports. User Guide

Sage Abra SQL HRMS Reports. User Guide Sage Abra SQL HRMS Reports User Guide 2010 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service names mentioned herein are registered trademarks or trademarks

More information

ezlabormanager for Supervisors Handout Manual

ezlabormanager for Supervisors Handout Manual ezlabormanager for Supervisors Handout Manual. V12291072195CANENG_EZ18 2010 ADP, Inc. ADP s Trademarks The ADP Logo and ezlabormanager are registered trademarks of ADP, Inc. Third-Party Trademarks Adobe,

More information

Netezza Workbench Documentation

Netezza Workbench Documentation Netezza Workbench Documentation Table of Contents Tour of the Work Bench... 2 Database Object Browser... 2 Edit Comments... 3 Script Database:... 3 Data Review Show Top 100... 4 Data Review Find Duplicates...

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: +966 12 739 894 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training is designed to

More information

Access 2003 Introduction to Queries

Access 2003 Introduction to Queries Access 2003 Introduction to Queries COPYRIGHT Copyright 1999 by EZ-REF Courseware, Laguna Beach, CA http://www.ezref.com/ All rights reserved. This publication, including the student manual, instructor's

More information

1. Linking among several worksheets in the same workbook 2. Linking data from one workbook to another

1. Linking among several worksheets in the same workbook 2. Linking data from one workbook to another Microsoft Excel 2003: Part V Advanced Custom Tools Windows XP (I) Linking Data from Several Worksheets and Workbooks In Excel Level III, we have learned and seen examples of how to link data from one worksheet

More information

Querying Microsoft SQL Server

Querying Microsoft SQL Server Course 20461C: Querying Microsoft SQL Server Module 1: Introduction to Microsoft SQL Server 2014 This module introduces the SQL Server platform and major tools. It discusses editions, versions, tools used

More information

COGNOS 8 Business Intelligence

COGNOS 8 Business Intelligence COGNOS 8 Business Intelligence QUERY STUDIO USER GUIDE Query Studio is the reporting tool for creating simple queries and reports in Cognos 8, the Web-based reporting solution. In Query Studio, you can

More information

Microsoft Access 2007

Microsoft Access 2007 How to Use: Microsoft Access 2007 Microsoft Office Access is a powerful tool used to create and format databases. Databases allow information to be organized in rows and tables, where queries can be formed

More information

Vector HelpDesk - Administrator s Guide

Vector HelpDesk - Administrator s Guide Vector HelpDesk - Administrator s Guide Vector HelpDesk - Administrator s Guide Configuring and Maintaining Vector HelpDesk version 5.6 Vector HelpDesk - Administrator s Guide Copyright Vector Networks

More information

Chapter 9 Joining Data from Multiple Tables. Oracle 10g: SQL

Chapter 9 Joining Data from Multiple Tables. Oracle 10g: SQL Chapter 9 Joining Data from Multiple Tables Oracle 10g: SQL Objectives Identify a Cartesian join Create an equality join using the WHERE clause Create an equality join using the JOIN keyword Create a non-equality

More information

Using an Access Database

Using an Access Database A Few Terms Using an Access Database These words are used often in Access so you will want to become familiar with them before using the program and this tutorial. A database is a collection of related

More information

StreamServe Persuasion SP5 Ad Hoc Correspondence and Correspondence Reviewer

StreamServe Persuasion SP5 Ad Hoc Correspondence and Correspondence Reviewer StreamServe Persuasion SP5 Ad Hoc Correspondence and Correspondence Reviewer User Guide Rev B StreamServe Persuasion SP5 Ad Hoc Correspondence and Correspondence Reviewer User Guide Rev B 2001-2010 STREAMSERVE,

More information