Hyperion Essbase Audit Logs Turning Off Without Notification

Size: px
Start display at page:

Download "Hyperion Essbase Audit Logs Turning Off Without Notification"

Transcription

1 Hyperion Essbase Audit Logs Turning Off Without Notification Audit logs, or SSAUDIT, are a crucial component of backing up Hyperion Essbase applications in many environments. It is the equivalent of a transaction log in a relational database. To use this effectively, the audit log has to consistently log database changes. If the audit feature in Hyperion Essbase is used, the following information is absolutely critical to know to effectively manage this feature. If the application is on a shared environment where multiple groups/people are administering the applications, it is critical that everybody understands this, and plays nicely together! The audit logs are turned off without any notification when the following actions occur on an Essbase server. To turn the audit feature back on, the Essbase application in question has to be stopped and started. It is not required to cycle the Essbase service. Any operation that causes a database restructure. The creation of a new application The creation a new database Copying a database Renaming a database After any of these operations occurs on the server, stop and start all applications that use the audit feature.

2 Why NOT Using the Currency Option with Hyperion Planning has Benefits Hyperion Planning applications often require multiple currencies. Hyperion Planning includes a currency option that easily allows multiple currencies to be managed. Allowing Planning to manage this introduces a couple of limitations and inherent costs. These can be avoided if currency is managed manually. When the Hyperion Planning currency option is enabled, an additional 2 dimensions are required. This raises the required dimensions from 6 to 8. Most planning applications have a need for at least 2 to 3 custom dimensions. Even smaller applications suffer greatly when adding the additional 2 dimensions. So, by using the currency option, the ability to use custom dimensions is limited. By adding a few accounts to hold the currency conversion and adding one dimension that has members for all the currencies, multi-currency applications can be handled with only one additional dimension. If the currency option is not used, the currency calculations may be written more efficiently than the default calculations introduced with the currency option. Another drawback with the currency option is that is only allows data input to the base currency. The majority of the applications I have built that require multiple currencies require the input at more than base currency. Assume a retail company has stores in a number of countries with different currencies. Salaries may be budgeted in the local currencies, but the cost of the bags used by customers to carry

3 merchandise out of the store is budgeted in USD. The costs are distributed in USD based on units, and converted to the local currencies. Lastly, using the currency option, because of the number of dense dimensions, limits the number of time periods. Executing calculations is limited to using 64k of memory. Applications that use something other than month (like week, or day) can regularly hit this limit. Essbase Add-in Ribbon, Version 2 Is Here Thanks for all the great feedback on our Essbase Add-in Ribbon! I have seen praise and thanks on the Oracle forums, network54, and a number of other popular hotspots. I am constantly getting s of gratitude. Hundreds, if not thousands, of Hyperion customers are using the ribbon. With the accolades, I am also getting some great suggestions for additional functionality. In the spirit of giving back to the Hyperion community, I have every intention of implementing these requests. What is new for the second release of the ribbon? For those of you who used the Essbase Powerbar, you are aware of the option to save commonly used server connections. I am happy to announce that it is now part of the In2Hyperion Essbase Add-in Ribbon feature set! We moved the connection button that existed on the right, to the first button on the ribbon and renamed it Quick Connect. From this menu button, users can select connect, add quick connection, or remove quick connection. As connections are

4 added, they will appear automatically in the Quick Connect menu. The benefit of this option is that a user can select a quick connection, which remembers the server, application, database, username, and password. Connecting to an Essbase application requires fewer clicks and less typing. After quick connections are added, a file in My Documents named In2Hyperion.txt will exist. This is where the connection information is stored. The password is encrypted to ensure your information is not made available to other parties. Download version 2. To stay informed about future releases by signing up for our newsletter. If you have any feedback, send us an through the contact page. Thanks again for all your support! Why Does Workspace Log You Out? Many clients have issues with Workspace logging users out when attempting to open/export certain types of documents. For example, a user logged into Hyperion Workspace attempts to open a Supporting Detail document, only to be prompted with a logout warning message before the document opens. The same can happen when a user attempts to export an FR report file (.DES file) from Workspace. After being logged out of Workspace, the user is able to log back into the application and open/export the necessary document. This issue can easily fixed by adjusting a few browser settings as shown below. NOTE: Microsoft documents typically cause this logout issue (Excel, Word, PowerPoint).

5 1. Open your web browser (This blog entry will assume IE). 2. Select Tools -> Internet Options from the menu bar. 3. Select the Internet option inside the Security tab. Select Custom Level. 4. Navigate to the Downloads section and Enable Automatic prompting for file downloads. Click OK.

6 5. Now select the Local Internet option inside the Security tab. Select Custom Level.

7 6. Navigate to the Downloads section and Enable Automatic prompting for file downloads. Click OK. 7. Finally, select the Trusted sites option inside the Security tab. Select Custom Level.

8 8. Navigate to the Downloads section and Enable Automatic prompting for file downloads. Click OK.

9 9. Now that the settings have been set properly, Click OK on the Internet Options dialog box. 10. Close and re-open your web browser for the settings to take effect. Test these settings by logging into Workspace and opening a Supporting Detail document. Dynamically Referencing Members in Business Rules Often times with a Hyperion Essbase or Planning application, an allocation of data will be required. Many times, the allocation is simply moving data from one member to another. When the number of members involved is large, developing the script can be time consuming. When the members frequently change, the maintenance of the calculation can be a nuisance. When the members involved in the allocation are similar on both sides (the from and the to), the following method can be employed to speed the development and limit, or eliminate, any maintenance required. Requirement The application has 50 members in which the data needs to be moved. The data originates from an account coming from the general ledger. The data needs to be moved to a new member that doesn t exist in the chart of accounts. The new member will exist in a different part of the hierarchy. Solution The first step is to create a corresponding member for each of

10 the 50 accounts that need allocated. These accounts will be identical to the original 50, except they will be prefixed with a D identifying them as a dummy, or made up, account. Each of these new accounts will have a UDA of allocation. The prefix of the member and the UDA are not critical. They will likely be something more meaningful to the requirements. GL Acct Dummy Account D D D Once the hierarchy is ready to handle the allocation, the following function can be used. In layman s terms, this only executes on the new members added (identified by the unique UDA) and makes them equal to the corresponding member without the added prefix. We will assume that this is being executed on a scenario that equals Actuals. FIX(@UDA( allocation )) /* Make the new member equal to the old member */ Actuals Account )), 1)); /* Clear the old member Account )), 1)) = #Missing; ENDFIX Let s assume that the UDA is NOT added to the new, or dummy, member. If the UDA is on the originating member, the calculation would look like this. FIX(@UDA( allocation )) /* Make the new member equal to the old member D,@NAME(@CURRMBR( Account )))) = Actuals ; /* Clear the old member */ Actuals = #Missing;

11 ENDFIX Now we can break down these functions. Remember, the calculations loop through all members in all dimensions. In this example, setting the result equal to Actuals is simply making the account that the calculation is looking at, at that particular point in the loop, equal to whatever is on the other side of the Account )), 1)) There are four functions used in this will convert a string to a member requires 2 parameters (3 optional). The first is the larger string from which you want to take a smaller string. The second is where to start, with 0 being the first character. The third is how many characters to include. If this is left blank, it will take all the characters to the right of the second will convert a member to a gets the current member of a specified dimension. Putting this all together, this calculation (from inside out) is getting the current member of the Accounts dimension ( d ). It converts that member to a string. It takes all the characters to the right of the first character ( ). Then it converts the string back to a member. At this point, we can set that member equal to D,@NAME(@CURRMBR( Account )))) The functions here are the same as above, except we are not removing the d. We are adding accepts two parameters and will combine those two in to one string Putting this all together, this calculation (from inside out)

12 is concatenating two strings, a D and the current member of the Accounts dimension ( d ). It then converts the string to a member. At this point, we can set that member equal to something. Benefits By using these functions, the calculations can be much smaller, quicker to develop, and completely maintained by the outline. This effectively gives the user community ownership on the maintenance. Calculating Custom Functions in Microsoft Excel Microsoft Excel does a great job of calculating only what is needed. If automatic calculation is turned on (and is by default), it only calculates formulas that have changed since the last calculations. If automatic calculation is turned off, F9 will accomplish the same thing. CTRL F9 goes one step further and calculates formulas that have changed, as well as the formulas dependent on them. CTRL ALT F9 calculates all formulas in the workbook, regardless of whether they changed since the last calculation. When custom functions are used, Microsoft Excel doesn t always know the dependencies because the function can reference cells outside those provided in the function arguments. When this occurs, using CTRL SHIFT ALT F9 is critical to ensure that all cells are calculated correctly. This rechecks dependent cells and calculates all formulas regardless of whether they have

13 changed since the last calculation. This is the only way to ensure that all data is calculated. Long Live The Essbase Add-In! Many of the Hyperion Planning and Essbase users still prefer to use the Essbase Add-In in conjunction with, or in place of, SmartView. As you probably already know, deploying the Essbase Add-In in version 11 has challenges. There is over 2GB of data that is required and the installtool.cmd file is not a simple installation that most users can administer without help. Because of the size, deploying it in a distributed package is extremely challenging. There are some instructions on various BLOGs that explain a way to deploy it manually, with edits to the registry. Any time I work with a client and mention editing the registry outside an automated install, this option is quickly disregarded. In version , Oracle Hyperion has added a self contained executable for the Essbase Add-In! The download is located in the Hyperion Essbase s download page. Why is the maximum number of returnable rows in SmartView

14 only 5,000? Regardless of whether the perception of using SmartView for large queries is good or bad, the reality is that finance and accounting users require the ability to pull large volumes of information out of Essbase. The only limit that I am aware of in the days of the Excel Add-In was the maximum number of rows Excel would allow (assuming the Essbase application cache settings were high enough to support it). With SmartView, there is a limit. The limit is controllable very easily, however. The error that users may question an administrator follows. Cannot perform cube view operation. OLAP error ( ): Maximum number of rows [5000] exceeded. To increase the maximum number of rows a user can retrieve, or submit, edit the service.olap.dataquery.grid.maxrows property in the essbase.properties file. The default is While editing this property, it may be benefitial to evaluate the size if the columns (.olap.dataquery.grid.maxcolumns), which is set to 255 by default. Once this is updated, restart the Hyperion services. The location of the essbase.properties file is dependent on the version of Essbase installed. Start by going to the server with APS installed. Location for version 9.3 %HYPERION_HOME%\AnalyticProviderServices\bin directory Location for version 11 %HYPERION_HOME%\products\Essbase\aps\bin\

15 Adding Font Types in Financial Reporting The ability to import font types into Hyperion Financial Reporting is a common request by many companies, typically a request resulting from corporate reporting standards. Not only is this possible, it s a quick and easy exercise that is detailed out below. Step 1: Locate the Font Folder. The font type files (normally identified by a.ttf or.ttf extension) can be found in the Fonts folder located in your Windows directory (Likely on your C drive). The key here is locating this folder on the server where Hyperion Financial Reporting has been installed. Step 2: Copying& Pasting the New Font File. This is as easy as it sounds just copy and paste the new file into this directory. Step 3: Creating a Report. Opening Hyperion Financial Reporting and create/modify a report. When selecting the font type, notice the new Font Type

16 that was just added in Step 2 above. Note that it s best to close the Financial Reporting client before importing the new Font file onto the server; this will insure that the client will recognize the new file. Financial Reporting Bottom 10 KPI Reporting solutions often require companies to filter out a top range of Key Performance Indicators; for example, the top 10 expenses related to marketing. Hyperion Financial Reporting makes this type of reporting easy for developers by providing the Top properties checkbox. The difficulty arises when a company requires a solution to display the bottom 10 those 10 expenses that account for a majority of marketing related expense. Hyperion Financial Reporting has nothing built to provide this type of information.

17 As you might expect knowing your smaller expenses is important but knowing the largest; those where you can improve margin, is vital. A solution to display the bottom 10 is detailed below; this solution displays the 10 largest negative values vs. displaying the 10 largest positive values. The high-level solution includes the following functionality: a. Inserting a Rank column. b. Sorting on the Rank column. c. Adding conditional suppression for bottom 10. Step 1: Create a report grid with a formula column as the first column (Column A below). Step 2: Insert the Rank function on the Formula Column. Be sure to choose the Ascending property. Adding Rank will order the rows from High-to-Low based on the data returned. The example below provides ranking off of Column A. The ranking is used on Step 4 when adding conditional suppression.

18 Step 3: Apply row Sort to the grid. You find the Sort property by placing focus on the entire grid (left clicking the upper left-most cell). Choose to apply sorting to the Rows, Sort by Column A, and sort in Ascending order. Sorting will determine the order in which the data is displayed, Ascending or Descending. The Sorting is used on Step 4 when adding conditional suppression. Step 4: Add Conditional Suppression to the row(s). This logic will determine which data rows are ultimately displayed to the user. To add conditional suppression, highlight the row and click Advanced Options. Because the requirement is to show the bottom 10, suppression should hide any row with a Rank value greater than 10 (You will also want to suppress rows where No Data is returned).

19 When this report is run, only the bottom 10 will be displayed to the user those marketing expenses with the largest negative values. The solution above will essentially do what a Bottom checkbox would have provided had Hyperion programmed this functionality into the application.

Force Excel to Calculate Dependencies In Order

Force Excel to Calculate Dependencies In Order Force Excel to Calculate Dependencies In Order Overview If you have ever used custom functions in Excel, depending on the complexity of them, you have probably run into an issue where the accuracy of the

More information

Managing Smart View Shared Connections

Managing Smart View Shared Connections Managing Smart View Shared Connections If you use Smart View, you are familiar with the Smart View Shared Connection URL, which is unique to the environment that Smart View connects. That property is saved

More information

Budget Process Tools: Smart View Ad Hoc Basics

Budget Process Tools: Smart View Ad Hoc Basics Budget Process Tools: Smart View Ad Hoc Basics 2 6.21.17 CalPlan HCP (Human Capital Planning) CalRptg HCPRptg Smart View 1 Agenda 1 2 3 4 5 6 Smart View Ad Hoc Basics 1 Homework Review Creating Multiple

More information

Call: Hyperion Planning Course Content:35-40hours Course Outline Planning Overview

Call: Hyperion Planning Course Content:35-40hours Course Outline Planning Overview Hyperion Planning Course Content:35-40hours Course Outline Planning Overview Oracle's Enterprise Performance Management Planning Architecture Planning and Essbase Navigating Workspace Launching Workspace

More information

Seagate Crystal Reports 8 and Hyperion Essbase

Seagate Crystal Reports 8 and Hyperion Essbase Seagate Crystal Reports 8 and Hyperion Essbase Seagate Crystal Reports 8 provides dramatic improvements in OLAP reporting for users of Hyperion Essbase and all other supported OLAP systems. Now more than

More information

Budget Process Tools: Smart View Ad Hoc Basics 1

Budget Process Tools: Smart View Ad Hoc Basics 1 Budget Process Tools: Smart View Ad Hoc Basics 1 01.12.17 CalPlan HCP (Human Capital Planning) CalRptg HCPRptg Smart View 1 An ad hoc committee What is your particular purpose for querying into your CalPlanning

More information

Budget Process Tools: Smart View Ad Hoc Basics 1

Budget Process Tools: Smart View Ad Hoc Basics 1 Budget Process Tools: Smart View Ad Hoc Basics 1 10.27.16 CalPlan HCP (Human Capital Planning) CalRptg HCPRptg Smart View 1 An ad hoc committee What is your particular purpose for querying into your CalPlanning

More information

Institutional Reporting and Analysis (IRA) For help, blitz "Financial Reports", or

Institutional Reporting and Analysis (IRA) For help, blitz Financial Reports, or Institutional Reporting and Analysis (IRA) 1 Training Agenda Introduction to the IRA Reporting Tool Logging onto the system (4-5) Navigating the Dashboard (6-10) Running Reports (11-12) Working with Reports

More information

ethority Training Guide University of Hawaii ethority - Creating User DataBooks From Templates Version 1.0.0

ethority Training Guide University of Hawaii ethority - Creating User DataBooks From Templates Version 1.0.0 University of Hawaii ethority - Creating User DataBooks From Templates Version 1.0.0 Table of Contents Objectives... 3 Resources... 4 ethority Glossary... 5 Steps to Creating a Report:... 7 Learning Through

More information

Advanced Excel Selecting and Navigating Cells

Advanced Excel Selecting and Navigating Cells Advanced Excel 2007 One major organizational change in Excel 2007, when compared to 2003, is the introduction of ribbons. Each ribbon reveals many more options depending on what tab is selected. The Help

More information

Oracle Planning and Budgeting Cloud (PBCS)

Oracle Planning and Budgeting Cloud (PBCS) Updated 03/22/17 Oracle Planning and Budgeting Cloud (PBCS) Smart View for Office 1 P a g e Table of Contents What is Smart View?... 3 PBCS Web Forms... 3 Ad Hoc Analysis Queries... 3 Installing Smart

More information

CalPlan. Creating a Unit Plan Navigating CalPlan Workbook 1/25/18

CalPlan. Creating a Unit Plan Navigating CalPlan Workbook 1/25/18 CalPlan Creating a Unit Plan Workbook 1/25/18 Table of Contents Exercise 1: Log into the Workspace & Run a CalPlan Report... 3 Exercise 2: Launching CalPlan and Setting Your Entity... 10 Exercise 3: Actualized

More information

EFIS 2.0 Training Materials Child Care User

EFIS 2.0 Training Materials Child Care User EFIS 2.0 Training Materials Child Care User Contents Module 1 Basic Planning... 3 Module 2 Basic Planning Through Smart View... 17 Module 3 Advanced Smart View... 29 Module 4 Data Entry Validation... 40

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 people in certain situations while others have

More information

SETON HALL UNIVERSITY. E~print for Banner Finance User Guide. Controller s Office Revised on 05-Mar-2008

SETON HALL UNIVERSITY. E~print for Banner Finance User Guide. Controller s Office Revised on 05-Mar-2008 SETON HALL UNIVERSITY E~print for Banner Finance User Guide Controller s Office Revised on 05-Mar-2008 Contents Page Preface Account Set-Up 3 Background 9 e~print Login 10 Report Directory 12 Security

More information

Oracle Hyperion Tips and Tricks. NEOAUG Eric Sanders, Gordon Strodel Monday, October 22, 2012

Oracle Hyperion Tips and Tricks. NEOAUG Eric Sanders, Gordon Strodel Monday, October 22, 2012 Oracle Hyperion 11.1.2.2 Tips and Tricks NEOAUG Eric Sanders, Gordon Strodel Monday, October 22, 2012 Agenda About Archetype What s New in 11.1.2.2: New User Interface Calculation Manager Manage Substitution

More information

Xton Access Manager GETTING STARTED GUIDE

Xton Access Manager GETTING STARTED GUIDE Xton Access Manager GETTING STARTED GUIDE XTON TECHNOLOGIES, LLC PHILADELPHIA Copyright 2017. Xton Technologies LLC. Contents Introduction... 2 Technical Support... 2 What is Xton Access Manager?... 3

More information

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

EXCEL 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 Training@csun.edu TABLE OF CONTENTS Introduction... 1

More information

The PeopleSoft Financials System

The PeopleSoft Financials System The PeopleSoft Financials System 2 Introduction...................... 14 Signing In and Out.................... 14 Signing In to the System.............. 14 Signing Out................... 17 Navigation

More information

Working with Data in Microsoft Excel 2010

Working with Data in Microsoft Excel 2010 Working with Data in Microsoft Excel 2010 This document provides instructions for using the sorting and filtering features in Microsoft Excel, as well as working with multiple worksheets in the same workbook

More information

Quick Reference Guide 8 Excel 2013 for Windows Keyboard Shortcut Keys

Quick Reference Guide 8 Excel 2013 for Windows Keyboard Shortcut Keys Quick Reference Guide 8 Excel 2013 for Windows Keyboard Shortcut Keys Control Shortcut s Ctrl + PgDn Ctrl + PgUp Ctrl + Shift + & Ctrl + Shift_ Ctrl + Shift + ~ Ctrl + Shift + $ Ctrl + Shift + % Ctrl +

More information

Advanced Excel. Click Computer if required, then click Browse.

Advanced Excel. Click Computer if required, then click Browse. Advanced Excel 1. Using the Application 1.1. Working with spreadsheets 1.1.1 Open a spreadsheet application. Click the Start button. Select All Programs. Click Microsoft Excel 2013. 1.1.1 Close a spreadsheet

More information

Table of Contents Data Validation... 2 Data Validation Dialog Box... 3 INDIRECT function... 3 Cumulative List of Keyboards Throughout Class:...

Table of Contents Data Validation... 2 Data Validation Dialog Box... 3 INDIRECT function... 3 Cumulative List of Keyboards Throughout Class:... Highline Excel 2016 Class 10: Data Validation Table of Contents Data Validation... 2 Data Validation Dialog Box... 3 INDIRECT function... 3 Cumulative List of Keyboards Throughout Class:... 4 Page 1 of

More information

Excel 2007 New Features Table of Contents

Excel 2007 New Features Table of Contents Table of Contents Excel 2007 New Interface... 1 Quick Access Toolbar... 1 Minimizing the Ribbon... 1 The Office Button... 2 Format as Table Filters and Sorting... 2 Table Tools... 4 Filtering Data... 4

More information

Microsoft Excel 2010 Handout

Microsoft Excel 2010 Handout Microsoft Excel 2010 Handout Excel is an electronic spreadsheet program you can use to enter and organize data, and perform a wide variety of number crunching tasks. Excel helps you organize and track

More information

CSSCR Excel Intermediate 4/13/06 GH Page 1 of 23 INTERMEDIATE EXCEL

CSSCR Excel Intermediate 4/13/06 GH Page 1 of 23 INTERMEDIATE EXCEL CSSCR Excel Intermediate 4/13/06 GH Page 1 of 23 INTERMEDIATE EXCEL This document is for those who already know the basics of spreadsheets and have worked with either Excel for Windows or Excel for Macintosh.

More information

Introduction to Microsoft Excel 2007

Introduction to Microsoft Excel 2007 Introduction to Microsoft Excel 2007 Microsoft Excel is a very powerful tool for you to use for numeric computations and analysis. Excel can also function as a simple database but that is another class.

More information

Microsoft Excel 2007

Microsoft Excel 2007 Learning computers is Show ezy Microsoft Excel 2007 301 Excel screen, toolbars, views, sheets, and uses for Excel 2005-8 Steve Slisar 2005-8 COPYRIGHT: The copyright for this publication is owned by Steve

More information

Introductory Excel Walpole Public Schools. Professional Development Day March 6, 2012

Introductory Excel Walpole Public Schools. Professional Development Day March 6, 2012 Introductory Excel 2010 Walpole Public Schools Professional Development Day March 6, 2012 By: Jessica Midwood Agenda: What is Excel? How is Excel 2010 different from Excel 2007? Basic functions of Excel

More information

Hands-On Lab. Lab: Developing BI Applications. Lab version: Last updated: 2/23/2011

Hands-On Lab. Lab: Developing BI Applications. Lab version: Last updated: 2/23/2011 Hands-On Lab Lab: Developing BI Applications Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: USING THE CHARTING WEB PARTS... 5 EXERCISE 2: PERFORMING ANALYSIS WITH EXCEL AND

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Filling Data Across Columns

More information

Intermediate Excel Training Course Content

Intermediate Excel Training Course Content Intermediate Excel Training Course Content Lesson Page 1 Absolute Cell Addressing 2 Using Absolute References 2 Naming Cells and Ranges 2 Using the Create Method to Name Cells 3 Data Consolidation 3 Consolidating

More information

Excel 2013 Part 2. 2) Creating Different Charts

Excel 2013 Part 2. 2) Creating Different Charts Excel 2013 Part 2 1) Create a Chart (review) Open Budget.xlsx from Documents folder. Then highlight the range from C5 to L8. Click on the Insert Tab on the Ribbon. From the Charts click on the dialogue

More information

SPREADSHEET (Excel 2007)

SPREADSHEET (Excel 2007) SPREADSHEET (Excel 2007) 1 U N I T 0 4 BY I F T I K H A R H U S S A I N B A B U R Spreadsheet Microsoft Office Excel 2007 (or Excel) is a computer program used to enter, analyze, and present quantitative

More information

Introduction to Excel 2007

Introduction to Excel 2007 Introduction to Excel 2007 These documents are based on and developed from information published in the LTS Online Help Collection (www.uwec.edu/help) developed by the University of Wisconsin Eau Claire

More information

Data. Selecting Data. Sorting Data

Data. Selecting Data. Sorting Data 1 of 1 Data Selecting Data To select a large range of cells: Click on the first cell in the area you want to select Scroll down to the last cell and hold down the Shift key while you click on it. This

More information

Microsoft Excel 2010 Basic

Microsoft Excel 2010 Basic Microsoft Excel 2010 Basic Introduction to MS Excel 2010 Microsoft Excel 2010 is a spreadsheet software in the new Microsoft 2010 Office Suite. Excel allows you to store, manipulate and analyze data in

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Files in Microsoft Excel are referred to as Workbooks. This is because they can contain more than one sheet. The number of sheets a workbook can contain is only limited by your computer

More information

Copyright 2018 MakeUseOf. All Rights Reserved.

Copyright 2018 MakeUseOf. All Rights Reserved. The Beginner s Guide to Microsoft Excel Written by Sandy Stachowiak Published April 2018. Read the original article here: https://www.makeuseof.com/tag/beginners-guide-microsoftexcel/ This ebook is the

More information

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing Managing Your Website with Convert Community My MU Health and My MU Health Nursing Managing Your Website with Convert Community LOGGING IN... 4 LOG IN TO CONVERT COMMUNITY... 4 LOG OFF CORRECTLY... 4 GETTING

More information

Basic Excel. Helen Mills OME-RESA

Basic Excel. Helen Mills OME-RESA Basic Excel Helen Mills OME-RESA Agenda Introduction- Highlight Basic Components of Microsoft Excel Entering & Formatting Data, Numbers, & Tables Calculating Totals & Summaries Using Formulas Conditional

More information

EXCEL 2003 DISCLAIMER:

EXCEL 2003 DISCLAIMER: EXCEL 2003 DISCLAIMER: This reference guide is meant for experienced Microsoft Excel users. It provides a list of quick tips and shortcuts for familiar features. This guide does NOT replace training or

More information

Introduction to Excel 2013

Introduction to Excel 2013 Introduction to Excel 2013 Copyright 2014, Software Application Training, West Chester University. A member of the Pennsylvania State Systems of Higher Education. No portion of this document may be reproduced

More information

DOWNLOAD PDF VBA MACRO TO PRINT MULTIPLE EXCEL SHEETS TO ONE

DOWNLOAD PDF VBA MACRO TO PRINT MULTIPLE EXCEL SHEETS TO ONE Chapter 1 : Print Multiple Sheets Macro to print multiple sheets I have a spreadsheet set up with multiple worksheets. I have one worksheet (Form tab) created that will pull data from the other sheets

More information

Excel Tables & PivotTables

Excel Tables & PivotTables Excel Tables & PivotTables A PivotTable is a tool that is used to summarize and reorganize data from an Excel spreadsheet. PivotTables are very useful where there is a lot of data that to analyze. PivotTables

More information

Recovering An Essbase Application From a Corrupt Data File

Recovering An Essbase Application From a Corrupt Data File Recovering An Essbase Application From a Corrupt Data File It is possible for a database in Essbase to become corrupt. This can be caused by server hangs, software glitches, and a variety of other reasons.

More information

Office of Instructional Technology

Office of Instructional Technology Office of Instructional Technology Microsoft Excel 2016 Contact Information: 718-254-8565 ITEC@citytech.cuny.edu Contents Introduction to Excel 2016... 3 Opening Excel 2016... 3 Office 2016 Ribbon... 3

More information

Rutgers University. Smart View Training Guide

Rutgers University. Smart View Training Guide Rutgers University Smart View Training Guide Contents What is Smart View?... 2 Installing Smart View... 2 Establishing a Connection... 3 Ad-Hoc Analysis... 5 Creating an Ad-Hoc Analysis... 5 Dimensions

More information

Switching to Sheets from Microsoft Excel Learning Center gsuite.google.com/learning-center

Switching to Sheets from Microsoft Excel Learning Center gsuite.google.com/learning-center Switching to Sheets from Microsoft Excel 2010 Learning Center gsuite.google.com/learning-center Welcome to Sheets Now that you've switched from Microsoft Excel to G Suite, learn how to use Google Sheets

More information

SAS Web Report Studio 3.1

SAS Web Report Studio 3.1 SAS Web Report Studio 3.1 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Web Report Studio 3.1: User s Guide. Cary, NC: SAS

More information

BUDGET ADJUSTMENT FORM INSTRUCTIONS (Revised May 2015)

BUDGET ADJUSTMENT FORM INSTRUCTIONS (Revised May 2015) BUDGET ADJUSTMENT FORM INSTRUCTIONS (Revised May 2015) The Form allows users to enter budget adjustments into the accounting system. The Form can be downloaded from the Financial Services web site under

More information

Contents. 1. Managing Seed Plan Spreadsheet

Contents. 1. Managing Seed Plan Spreadsheet By Peter K. Mulwa Contents 1. Managing Seed Plan Spreadsheet Seed Enterprise Management Institute (SEMIs) Managing Seed Plan Spreadsheet Using Microsoft Excel 2010 3 Definition of Terms Spreadsheet: A

More information

Day 1 Agenda. Brio 101 Training. Course Presentation and Reference Material

Day 1 Agenda. Brio 101 Training. Course Presentation and Reference Material Data Warehouse www.rpi.edu/datawarehouse Brio 101 Training Course Presentation and Reference Material Day 1 Agenda Training Overview Data Warehouse and Business Intelligence Basics The Brio Environment

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 THE BASICS PAGE 02! What is Microsoft Excel?! Important Microsoft Excel Terms! Opening Microsoft Excel 2010! The Title Bar! Page View, Zoom, and Sheets MENUS...PAGE

More information

Excel Shortcuts Increasing YOUR Productivity

Excel Shortcuts Increasing YOUR Productivity Excel Shortcuts Increasing YOUR Productivity CompuHELP Division of Tommy Harrington Enterprises, Inc. tommy@tommyharrington.com https://www.facebook.com/tommyharringtonextremeexcel Excel Shortcuts Increasing

More information

City College of San Francisco Argos Training Documentation

City College of San Francisco Argos Training Documentation City College of San Francisco Argos Training Documentation Prepared by Edgar Coronel Strata Information Group Updated March 21, 2013 Contents Login into Argos... 2 Navigation Area... 3 Explorer view...

More information

Welcome to Introduction to Microsoft Excel 2010

Welcome to Introduction to Microsoft Excel 2010 Welcome to Introduction to Microsoft Excel 2010 2 Introduction to Excel 2010 What is Microsoft Office Excel 2010? Microsoft Office Excel is a powerful and easy-to-use spreadsheet application. If you are

More information

UMHS Financial Systems Workspace & Smart View Templates

UMHS Financial Systems Workspace & Smart View Templates Level 1 Password https://findatamgr.dsc.umich.edu/workspace/index.jsp What If I have a blank Homepage? Utilize the Use Current Page button to set the Home Page. Why do I not see the Preview User Point

More information

Support for Oracle General Ledger Essbase applications in Calculation Manager

Support for Oracle General Ledger Essbase applications in Calculation Manager Oracle Hyperion Calculation Manager Release 11.1.2.0.000 Patch Set 1 (PS1): 11.1.2.1.000 Readme [Skip Navigation Links] Purpose... 1 New Features... 1 Release 11.1.2.1 New Features... 1 Release 11.1.2

More information

Lastly, in case you don t already know this, and don t have Excel on your computers, you can get it for free through IT s website under software.

Lastly, in case you don t already know this, and don t have Excel on your computers, you can get it for free through IT s website under software. Welcome to Basic Excel, presented by STEM Gateway as part of the Essential Academic Skills Enhancement, or EASE, workshop series. Before we begin, I want to make sure we are clear that this is by no means

More information

Creating Queries to tie Job Cost and GL by Job

Creating Queries to tie Job Cost and GL by Job Creating Queries to tie Job Cost and GL by Job This session will cover the creation of a multi-table query to create a report that may be used to quickly review Job Cost and General Ledger posting to verify

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Basic Formulas Filling Data

More information

Getting started with Ms Access Getting Started. Primary Key Composite Key Foreign Key

Getting started with Ms Access Getting Started. Primary Key Composite Key Foreign Key Getting started with Ms Access 2007 Getting Started Customize Microsoft Office Toolbar The Ribbon Quick Access Toolbar Navigation Tabbed Document Window Viewing Primary Key Composite Key Foreign Key Table

More information

Lesson 1: Exploring Excel Return to the Excel 2007 web page

Lesson 1: Exploring Excel Return to the Excel 2007 web page Lesson 1: Exploring Excel 2007 Return to the Excel 2007 web page Presenting Excel 2007 Excel can be used for a wide variety of tasks: Creating and maintaining detailed budgets Tracking extensive customer

More information

ADD AND NAME WORKSHEETS

ADD AND NAME WORKSHEETS 1 INTERMEDIATE EXCEL While its primary function is to be a number cruncher, Excel is a versatile program that is used in a variety of ways. Because it easily organizes, manages, and displays information,

More information

DOWNLOAD PDF EXCEL MACRO TO PRINT WORKSHEET TO

DOWNLOAD PDF EXCEL MACRO TO PRINT WORKSHEET TO Chapter 1 : All about printing sheets, workbook, charts etc. from Excel VBA - blog.quintoapp.com Hello Friends, Hope you are doing well!! Thought of sharing a small VBA code to help you writing a code

More information

Microsoft Excel Important Notice

Microsoft Excel Important Notice Microsoft Excel 2013 Important Notice All candidates who follow an ICDL/ECDL course must have an official ICDL/ECDL Registration Number (which is proof of your Profile Number with ICDL/ECDL and will track

More information

Microsoft Excel 2010 Level 1

Microsoft Excel 2010 Level 1 Microsoft Excel 2010 Level 1 One Day Course Course Description You have basic computer skills such as using a mouse, navigating through windows, and surfing the Internet. You have also used paper-based

More information

Tips & Tricks: MS Excel

Tips & Tricks: MS Excel Tips & Tricks: MS Excel 080501.2319 Table of Contents Navigation and References... 3 Layout... 3 Working with Numbers... 5 Power Features... 7 From ACS to Excel and Back... 8 Teacher Notes: Test examples

More information

lab MS Excel 2010 active cell

lab MS Excel 2010 active cell MS Excel is an example of a spreadsheet, a branch of software meant for performing different kinds of calculations, numeric data analysis and presentation, statistical operations and forecasts. The main

More information

NC User Conference Tips and Tricks for SAS FM June 16, 2009

NC User Conference Tips and Tricks for SAS FM June 16, 2009 NC User Conference Tips and Tricks for SAS FM June 16, 2009 Reporting 1. CDA Formula (Formatted Statement): To switch out the cell reference for the hardcoded member or dim name, you can go into the formula

More information

DATA WAREHOUSE BASICS

DATA WAREHOUSE BASICS DATA WAREHOUSE BASICS A Software Overview using the Retail Golf Model with version 9 NOTE: This course material was developed using Hummingbird version 9 with Windows XP. There will be navigational differences

More information

CSV WHAT IS IT? This document provides the answers to the following questions: For which Cognos report(s) do I request the 'CSV' version?

CSV WHAT IS IT? This document provides the answers to the following questions: For which Cognos report(s) do I request the 'CSV' version? CSV WHAT IS IT? This document provides the answers to the following questions: What is 'CSV'? For which Cognos report(s) do I request the 'CSV' version? Where do I select the CSV version of GL008? What

More information

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

Sage 500 ERP Intelligence Reporting Microsoft FRx to Sage Intelligence Report Designer Add-In Conversion Guide Sage 500 ERP Intelligence Reporting Microsoft FRx to Sage Intelligence Report Designer Add-In Conversion Guide 02.07.2013 1.0 Table of contents 1.0 Table of contents 2 2.0 Introduction 3 3.0 The Sage Intelligence

More information

Acknowledgements About the Author Starting off on the Right Foot p. 1 Basic Terminology p. 2 Title Bar p. 3 Menu Bar p. 3 Active Cell p.

Acknowledgements About the Author Starting off on the Right Foot p. 1 Basic Terminology p. 2 Title Bar p. 3 Menu Bar p. 3 Active Cell p. Acknowledgements p. a About the Author p. e Starting off on the Right Foot p. 1 Basic Terminology p. 2 Title Bar p. 3 Menu Bar p. 3 Active Cell p. 3 Toolbar Collections p. 3 Toolbar Collections p. 4 Help

More information

VERSION 7 JUNE Union Benefits. Employer User Guide Data Collection Tool

VERSION 7 JUNE Union Benefits. Employer User Guide Data Collection Tool VERSION 7 JUNE 2018 Union Benefits Employer User Guide Data Collection Tool About this guide This document is intended to provide an overview of the main sections of the Data Collection Tool ( DCT ) for

More information

EXCEL ADVANCED Linda Muchow

EXCEL ADVANCED Linda Muchow EXCEL ADVANCED 2016 Alexandria Technical and Community College Customized Training Technology Specialist 1601 Jefferson Street, Alexandria, MN 56308 320-762-4539 Linda Muchow lindac@alextech.edu 1 Table

More information

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification.

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification. Appendix 1 Microsoft Office Specialist: Access Certification Introduction The candidates for Microsoft Office Specialist certification should have core-level knowledge of Microsoft Office Access 2010.

More information

Financial Statements Using Crystal Reports

Financial Statements Using Crystal Reports Sessions 6-7 & 6-8 Friday, October 13, 2017 8:30 am 1:00 pm Room 616B Sessions 6-7 & 6-8 Financial Statements Using Crystal Reports Presented By: David Hardy Progressive Reports Original Author(s): David

More information

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training OBIEE Oracle Business Intelligence Enterprise Edition Rensselaer Business Intelligence Finance Author Training TABLE OF CONTENTS INTRODUCTION... 1 USER INTERFACE... 1 HOW TO LAUNCH OBIEE... 1 TERMINOLOGY...

More information

1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Excel 2007)

1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Excel 2007) 1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Excel 2007) 2 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Excel 2007) TABLE OF CONTENTS CHAPTER 1: GETTING STARTED... 5 THE EXCEL ENVIRONMENT...

More information

Excel Intermediate. Click in the name column of our Range of Data. (Do not highlight the column) Click on the Data Tab in the Ribbon

Excel Intermediate. Click in the name column of our Range of Data. (Do not highlight the column) Click on the Data Tab in the Ribbon Custom Sorting and Subtotaling Excel Intermediate Excel allows us to sort data whether it is alphabetic or numeric. Simply clicking within a column or row of data will begin the process. Click in the name

More information

Using Numbers, Formulas, and Functions

Using Numbers, Formulas, and Functions UNIT FOUR: Using Numbers, Formulas, and Functions T o p i c s : Using the Sort function Create a one-input data table Hide columns Resize columns Calculate with formulas Explore functions I. Using the

More information

OLAP Reporting with Crystal Reports 9

OLAP Reporting with Crystal Reports 9 Overview Crystal Reports has established itself as the reporting tool of choice for many companies and excels in providing high quality formatted information based on data stores throughout an organization.

More information

ITConnect KEEPING TRACK OF YOUR EXPENSES WITH YNAB

ITConnect KEEPING TRACK OF YOUR EXPENSES WITH YNAB ITConnect Technology made practical for home APRIL 06 Edit PDF files with Word Word is the best tool we have at hand to edit PDFs without having to purchase extra software. Viruses distributed by email

More information

Microsoft Excel Office 2016/2013/2010/2007 Tips and Tricks

Microsoft Excel Office 2016/2013/2010/2007 Tips and Tricks Microsoft Excel Office 2016/2013/2010/2007 Tips and Tricks In Office 2007, the OFFICE BUTTON is the symbol at the top left of the screen. 1 Enter Fractions That Will Display And Calculate Properly a. Type

More information

Lesson 16: Collaborating in Excel. Return to the Excel 2007 web page

Lesson 16: Collaborating in Excel. Return to the Excel 2007 web page Lesson 16: Collaborating in Excel Return to the Excel 2007 web page Working with Project Folders Create folders to store your files for a project in an organized manner Main folder in (Win XP) My Computer

More information

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet Copyright 1 99 Spreadsheet definition: A spreadsheet stores and manipulates data that lends itself to being stored in a table type format (e.g. Accounts, Science Experiments, Mathematical Trends, Statistics,

More information

Adobe Marketing Cloud Report Builder

Adobe Marketing Cloud Report Builder Adobe Marketing Cloud Report Builder Contents Adobe Report Builder Help...6 What's New in Report Builder...7 Report Builder 5.6...7 Report Builder 5.5...7 Report Builder 5.4...7 Report Builder 5.3...8

More information

TABLE OF CONTENTS. TECHNICAL SUPPORT APPENDIX Appendix A Formulas And Cell Links Appendix B Version 1.1 Formula Revisions...

TABLE OF CONTENTS. TECHNICAL SUPPORT APPENDIX Appendix A Formulas And Cell Links Appendix B Version 1.1 Formula Revisions... SPARC S INSTRUCTIONS For Version 1.1 UNITED STATES DEPARTMENT OF AGRICULTURE Forest Service By Todd Rivas December 29, 1999 TABLE OF CONTENTS WHAT IS SPARC S?... 1 Definition And History... 1 Features...

More information

Microsoft Office Excel 2013 Courses 24 Hours

Microsoft Office Excel 2013 Courses 24 Hours Microsoft Office Excel 2013 Courses 24 Hours COURSE OUTLINES FOUNDATION LEVEL COURSE OUTLINE Getting Started With Excel 2013 Starting Excel 2013 Selecting the Blank Worksheet Template The Excel 2013 Cell

More information

Lesson 1: Exploring Excel Return to the FastCourse Excel 2007 Level 1 book page

Lesson 1: Exploring Excel Return to the FastCourse Excel 2007 Level 1 book page Lesson 1: Exploring Excel 2007 Return to the FastCourse Excel 2007 Level 1 book page Lesson Objectives After studying this lesson, you will be able to: Explain ways Excel can help your productivity Launch

More information

Section 7. Topics Covered

Section 7. Topics Covered Section 7 Topics Covered " Inserting and deleting worksheets... 7-2 " Moving and copying worksheets... 7-2 " Using linking formulae... 7-5 " Using Paste Special... 7-6 " Viewing multiple workbooks... 7-12

More information

EXCEL TUTORIAL.

EXCEL TUTORIAL. EXCEL TUTORIAL Excel is software that lets you create tables, and calculate and analyze data. This type of software is called spreadsheet software. Excel lets you create tables that automatically calculate

More information

USING ODBC COMPLIANT SOFTWARE MINTRAC PLUS CONTENTS:

USING ODBC COMPLIANT SOFTWARE MINTRAC PLUS CONTENTS: CONTENTS: Summary... 2 Microsoft Excel... 2 Creating a New Spreadsheet With ODBC Data... 2 Editing a Query in Microsoft Excel... 9 Quattro Pro... 12 Creating a New Spreadsheet with ODBC Data... 13 Editing

More information

Microsoft How to Series

Microsoft How to Series Microsoft How to Series Getting Started with EXCEL 2007 A B C D E F Tabs Introduction to the Excel 2007 Interface The Excel 2007 Interface is comprised of several elements, with four main parts: Office

More information

Microsoft Excel 2010 Basics

Microsoft Excel 2010 Basics Microsoft xcel 2010 Basics irections: Answer the following questions. 1. A is a grid of rows and columns in which you enter text,, and the results of calculations. 2. At the top of your screen you will

More information

Hands-On Lab. Developing BI Applications. Lab version: Last updated: 2/23/2011

Hands-On Lab. Developing BI Applications. Lab version: Last updated: 2/23/2011 Hands-On Lab Developing BI Applications Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: USING THE CHART WEB PART... 4 Task 1 Add the Chart Web Part to the page... 4 Task 2

More information

Style Report Enterprise Edition

Style Report Enterprise Edition INTRODUCTION Style Report Enterprise Edition Welcome to Style Report Enterprise Edition! Style Report is a report design and interactive analysis package that allows you to explore, analyze, monitor, report,

More information

WAAT-PivotTables Accounting Seminar

WAAT-PivotTables Accounting Seminar WAAT-PivotTables-08-26-2016-Accounting Seminar Table of Contents What does a PivotTable do?... 2 How to create PivotTable:... 2 Add conditions to the PivotTable:... 2 Grouping Daily Dates into Years, Quarters,

More information