BID2WIN Workshop. Advanced Report Writing

Size: px
Start display at page:

Download "BID2WIN Workshop. Advanced Report Writing"

Transcription

1 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 Your feedback is valuable to us! Please be sure to complete an evaluation form for this Lab. Evaluation forms have been distributed to all lab workstations, and are also available at the Lab Reception Area.

2 Lab Contents Advanced Report Writing, Part I : Database Concepts and Terminology : Using Microsoft SQL Server Management Studio : Simple Queries Using Microsoft SQL Server Management Studio : Refining Queries Using Microsoft SQL Server Management Studio : Multiple Table Queries Using Microsoft SQL Server Management Studio Part I Summary Advanced Report Writing, Part II : Report Manager in Management Reporting (Reporting Services) : Creating Reports with Report Builder : Grouping Fields in Report Builder : Formatting Reports with Report Builder : Aggregate Fields in Report Builder : Filtering Fields in Report Builder : Creating Reports in Excel Part II Summary Advanced Report Writing, Part III : Editing Existing Reports Using Microsoft Visual Studio : Creating a New Report Using Microsoft Visual Studio : Formatting Reports Using Microsoft Visual Studio : Adding a Parameter to Reports Using Microsoft Visual Studio : Uploading New Reports to Report Manager : Adding New Reports to BUILD2WIN Part III Summary Summary Page 1

3 Advanced Report Writing, Part I Part I Objective In Part I of this workshop, we will cover the following areas: 1. Database Concepts and Terminology 2. Using Microsoft SQL Server Management Studio 3. Simple Queries Using Microsoft SQL Server Management Studio 4. Refining Queries Using Microsoft SQL Server Management Studio 5. Multiple Table Queries Using Microsoft SQL Server Management Studio Pre-Workshop Steps Before beginning this workshop, you must first reset the BID2WIN and BUILD2WIN databases on your lab workstation. Please complete the following steps prior to beginning this lab: On your workstation desktop, double-click the Reset Lab Databases icon and wait for the DOS window to appear. This step returns the BID2WIN database to its original state, wiping out changes made by the previous user. Page 2

4 1.1: Database Concepts and Terminology Reports in both BID2WIN and BUILD2WIN, whether standard, custom or user-created, are all based on the respective Microsoft SQL databases. Before delving into report writing for these products, it is important to have at least a fundamental of database terminology and concepts. In this part of the workshop, we will review some of those basic concepts and the tools used in report writing. After familiarizing ourselves with these database essentials, our first exercise will be creating a query of one of our SQL databases using Management Studio. Database Basics Common Database terminology All BID2WIN products use Microsoft SQL Server and are based on transactional databases Databases are made up of tables-that are related Tables contain unique identifiers (ObjectIDs, Refs) Overview of BID2WIN and BUILD2WIN Databases BID2WIN - The BID2WIN database is normalized and is not suitable for reporting, instead we use BID2WIN Management Reporting, which uses a Data Warehouse (and can contain data from multiple BID2WIN databases) BUILD2WIN The BUILD2WIN database use filtered views, which calculate calculated values and store denormalized data. Data is in real time and the data is secured. Tables and non-filtered views are locked-down so only database administrators can access them. Report Writing Tools Management Studio Report Manager Report Builder Excel Report Designer Using Microsoft SQL Server Management Studio to explore a database Understanding basic query language Creating a simple query Adding filters to a query Page 3

5 1.2: Using Microsoft SQL Server Management Studio Microsoft SQL Server Management Studio is the tool of choice for viewing database structure and content. In addition to providing a means to access tables in a database, it provides a platform to query databases to extract just the data that is most meaningful to us. Exercise: Examining a Table Using Microsoft SQL Server Management Studio A. To launch the Microsoft SQL Server Management Studio, simply double-click the Microsoft SQL Server Management Studio icon on the desktop of your lab workstation. The Microsoft SQL Server Management Studio appears. NOTE: In the real world the Microsoft SQL Server Management Studio icon would be found in the Microsoft SQL Server (2005 or 2008) folder in the All Programs menu on the server that hosts the databases. B. With Management Studio open, you will now connect to the instance that contains your BID2WIN and BUILD2WIN databases by clicking Connect. NOTE: In the real world you may have other applications that use Microsoft SQL. Ensure that you are connecting to the instance that hosts your BID2WIN and BUILD2WIN databases Page 4

6 C. Expand the Databases shown in the tree view on the right side of the screen by clicking on the + sign to the left of the folder. With the folder expanded, you will see your B2WData database along with your B2WDataWarehouse and BUILD2WIN databases. D. Expand the B2WDataWarehouse by clicking on the + to the left of the folder. You will now see subfolders. Expand the tables subfolder by clicking on the + sign. E. Right-click the table called dbo.estimate and select Open Table. The table will open on the right side of the program. This particular table has seventy columns of information with a row for every estimate created. Use the scroll bar below the table to peruse data. The rows and columns that make up the estimate table contain a large amount of information about the estimates in the database. Page 5

7 F. At this point, please feel free to ask any questions you may have. After the brief question and answer period, we will proceed to the next exercise. Page 6

8 1.3: Simple Queries Using Microsoft SQL Server Management Studio While viewing the contents of a table can be useful, a single table may provide too much information to be useful for most users. To extract the data we are seeking in a more meaningful form, we must create a query. Exercise : Creating a Simple Query Using Microsoft SQL Server Management Studio A. Click once on the B2WDataWarehouse in the tree view on the left side on Management studio to select it. Next, click New Query in the upper left of Management Studio. This open a blank query page on the right side of the program Page 7

9 B. In the blank query page on the right, right-click and select Design Query in Editor. This will open the Query Designer, a graphical interface that we ll use to create our queries. C. The Query Designer automatically opens with the Add Tables dialog box. From the list of tables, highlight Estimate and click Add. (Alternately, you can double-click on a table to add it to you query.) Once you have added your estimate table, click Close in your Add Table dialog box. NOTE: You can resize the Query Designer by dragging the lower right corner diagonally. Page 8

10 NOTE: The Query Designer, by default, displays three panes. On top pane is the diagram pane that holds the table diagrams. The middle pane contains the criteria pane that allows the user to change the order that information appears and to apply filter and sorting options. The bottom pane displays the actual SQL query that will be applied. Page 9

11 D. We are ready to create our query. For this exercise, we will query the table to get profit by customer. Check the boxes to the left of JobNumber, PrimaryCustomerName and TotalProfit in the estimate table Page 10

12 E. Click OK in the bottom right of your Query Designer. This closes the designer and writes the query in the T-SQL language for us. F. Click Execute. This will run the query you created and return your results in a grid view below. G. At this point, please feel free to ask any questions you may have. After the brief question and answer period, we will proceed to the next exercise using the query we just created. Page 11

13 1.4: Refining Queries Using Microsoft SQL Server Management Studio While our query has eliminated the data in the table that we did not need, it occurs to us that our query is displaying profit amounts for every estimate we have created. To see profit amounts for just those jobs that we won, we will make a change to our query. Since every job that we won has a job number assigned to it, we ll use this field to filter our query. Exercise: Refining a Query Using Microsoft SQL Server Management Studio A. In the blank query page, right-click and select Design Query in Editor. Add the Estimate table and close the Add Tables dialog box. Check the boxes to the left of JobNumber, PrimaryCustomerName and, TotalProfit. B. Note that in the Criteria section of the Query Designer, the three table columns we selected are present. In the JobNumber row, add <> to the Filter column box. This tells SQL that we only want data from estimates whose job number field is not blank. NOTE: Where did the N come from in the filter box above? It was added automatically by the Query Designer. It is an indicator of the data type, nchar. C. Click OK to close the Query Designer and create your query, and then click Execute. D. The results are displayed for all estimates with a job number. E. At this point, please feel free to ask any questions you may have. After the brief question and answer period, we will proceed to the next exercise using the query we just created. Page 12

14 NOTE: To edit an existing query without having to add tables and select columns: Highlight the T-SQL query and press Ctrl-x to cut it from the query page, returning it to its blank state. Right-click and select Design Query in Editor. Close the Add Tables dialog box without selecting a table. In the SQL pane of the Query Designer, highlight SELECT and FROM that appear by default and paste your previous query into the pane by pressing Ctrl-v. Click in the Diagram pane. Your previous query information will populate the Query Designer. Page 13

15 1.5: Multiple Table Queries Using Microsoft SQL Server Management Studio As we know, a database is made up of multiple tables of information. In order to extract the needed information from a database, the user will likely have to query multiple tables. Up until this point, we have been able to extract all the information we need from our dbo.estimate table. Suppose we wanted to find our customers city and state and add it to the results of our query. A quick look at our estimate table shows that primary customer city and state are not included in the table. However, that information is included in the dbo.customer table. To extract the city and state relevant to our customers in our estimate table, we will create a join to link the two tables for our query. As previously discussed, we use ObjectIDs and Refs to join tables in a query. Exercise: Querying Multiple Tables Using Microsoft SQL Server Management Studio A. Create a new query, right-click in the query page and select Design Query in Editor. Add the Estimate and Customers tables. B. Note that a bar joins both tables, running from ObjectID in the Estimate table to ObjectID in the Customer table. This is a default behavior in Query Designer but, unfortunately, this join is not correct for our purposes. Right-click on the bar and select Remove. Page 14

16 C. In the Estimate table, select JobNumber, PrimaryCustomer and Total Profit. In the Criteria pane, add <> to the Filter column box for JobNumber, as we did in our previous exercise. D. While in the Criteria pane, let s set the sort order for our results. Go to Sort Type in the Primary Customer row. Drop down the arrow and select Ascending. Note that the Sort Order automatically is assigned the number one. If we had multiple sort types, we could select the order of the sort in this field. E. In the Customer table, select City and State by checking the box to the left of the field names. F. We can rearrange the order of the results and rename any fields in the Criteria pane. Select a field by clicking to the left of Column. With your mouse button depressed, move the field up or down, as needed. We will order our columns as follows: PrimaryCustomer, City, State, JobNumber and TotalProfit. G. Next, in the PrimaryCustomer field, go to the Alias column and enter Customer. In the JobNumber Field, enter Job Number and in the Total Profit field, enter Profit. H. Click OK to close the Query Designer. Click Execute and view the results of your query. Page 15

17 I. At this point, please feel free to ask any questions you may have. After the brief question and answer period, we will proceed to the next exercise. Page 16

18 Part I Summary In Part I of this workshop, you performed the following exercises: Examining a Table Using Microsoft SQL Server Management Studio Creating a Simple Query Using Microsoft SQL Server Management Studio Refining a Query Using Microsoft SQL Server Management Studio Creating a Query with Multiple Tables Using Microsoft SQL Server Management Studio We will now take a quick break before beginning Part II. Page 17

19 Advanced Report Writing, Part II Part II Objective In Part II of this workshop, we will cover the following areas: 1. Report Manager in Management Reporting (Reporting Services) 2. Creating Reports with Report Builder 3. Grouping Fields in Report Builder 4. Formatting Reports with Report Builder 5. Aggregate Fields in Report Builder 6. Filtering Fields in Report Builder 7. Creating Reports in Excel Page 18

20 2.1: Report Manager in Management Reporting (Reporting Services) Report Manager is a browser-based tool developed by Microsoft as a means of accessing reports and their properties. It provides a means of configuring different settings for individual reports as well as for access to the manager itself and a tool for creating reports, Report Builder. Exercise: Exploring the Report Manager in Management Reporting (Microsoft Reporting Services) A. Double click the Management Reporting icon on your desktop. Your browser will open to the Report Manager. B. BID2WIN Management Reporting reports will be listed in Report Manager. Depending on the configuration of the server, a BUILD2WIN folder may be included with the list of reports. Clicking on the BUILD2WIN folder would display the reports in BUILD2WIN. (For our lab, BUILD2WIN has its own separate instance of Report Manager) Page 19

21 C. There are three key areas of Report Manager that we will use in subsequent exercises-show Details, Upload File and Report Builder. D. Click Show Details. E. This provides an expanded view on the reports that includes an icon to access a report s properties. The properties area allows us to save and update report definition files and configure the report s data source. Click the Properties icon for the Bid Schedule report. Page 20

22 F. The properties of the Bid Schedule report are displayed. Note the Report Definition edit and update links as well as the Data Sources link that we will use in subsequent exercises. G. Click on Home, directly below BID2WIN Management Reporting at the top of the page to return to the home page. H. At this point, please feel free to ask any questions you may have. After the brief question and answer period, we will proceed to the next exercise. Page 21

23 2.2: Creating Reports with Report Builder In addition to providing us with access to our BID2WIN and BUILD2WIN reports, Report Manager includes a tool for building reports that can then be added to Report Manager and, if desired, BUILD2WIN. Exercise: Creating a Report Using Report Builder A. From the home page of Report Manager, click Report Builder. NOTES: Reports created with Report Builder are based on the BID2WIN and BUILD2WIN report models. Report models must be installed and configured in Report Manager prior to creating a report. The current report models are available for download on the BID2WIN support site. The report model is a user-friendly description of an underlying database, with preestablished data relationships and auto-generated queries. The purpose of a report model is to remove the need for specialized knowledge of the underlying database schema and query language. Report models manage building queries, data source connections and authentication, expressions, filters, and parameters for the user, allowing business users to focus on report design. Page 22

24 B. In Report Builder, select the BUILD2WIN Model 2.0 and click OK. Page 23

25 NOTES: There are three prime areas that we will be using in Report Builder-Entities(1), Fields(2) and the Design Area(3) By selecting an entity, any fields available in that entity may be added to the design area. Once and entity is selected, additional sub-entities will be available along with some additional fields. Page 24

26 C. On the upper left side of Report Builder, select the entity Filtered Field Log Employee Job Account. Note that the list of fields below changes to reflect those fields that are in this entity. D. From the list of Fields, hold down the Ctrl key on your keyboard and select the following fields by clicking once on them- Account Account ID, Account Description, Double Time Hours, Employee Full Name, Job Job Number, Overtime Hours, Regular Hours and Total Hours. Page 25

27 E. Drag the selected fields to the designated box on the design portion of Report Builder. Page 26

28 G. In the Entity area of Report Builder, a list of sub entities appears under the Filtered Field Log Employee Job Account entity initially selected. Click on Field Log Employee REF. A new list of fields is presented in the Fields area below. Select Labor Type Name and drag it to the design area with the previously added fields. H. Arrange the fields in the following order by dragging them to the appropriate place in the design area: Job Job Number, Labor Type, Employee Full Name, Account Account ID, Account Description, Regular Hours, Overtime Hours, Double Time Hours and Total Hours. Page 27

29 I. Click Run Report and view the report. I. At this point, please feel free to ask any questions you may have. After the brief question and answer period, we will proceed to the next exercise. Page 28

30 2.3: Grouping Fields in Report Builder Currently, all of our fields are in one large group. By breaking out one or more of the fields into their own group, we can change how the results appear. Exercise: Change the Field Grouping in Report Builder A. Click in the JobJobNumber field in the design area. Holding down your mouse button, drag the field to the left until you see a blue bar. Release you mouse-note that JobJobNumber is now in a group of its own. B. Click Run Report. Data is now grouped by Job Number. Page 29

31 C. Create a separate group for Labor Type Name by moving the field to the left in the design area. Repeat the process for Employee Full Name. Click Run Report to view the results. J. At this point, please feel free to ask any questions you may have. After the brief question and answer period, we will proceed to the next exercise Page 30

32 2.4: Formatting Reports with Report Builder Although the report we created is producing the data we wanted to see, the report must be formatted before it is ready for general use. Exercise: Formatting in Report Builder A. Click in the text box above the fields in the design area and enter the following title Labor Hours by Job. Highlight the text and click Bold in the menu bar above. B. The blue textboxes contain the column names in the report. Change Job Job Number to Job Number, Labor Type Name to Labor Type, Employee Full Name to Employee Name and Account Account ID to Account ID. C. Select the Regular Hours value field in the design area. Right-click and select Format. Reduce the decimal places to 1. Repeat the process for the Overtime and Double Time values fields. Page 31

33 D. Adjust column widths, as desired, by moving the column divider bars to the left or right. E. Click Run Report to view the results. Page 32

34 F. At this point, please feel free to ask any questions you may have. After the brief question and answer period, we will proceed to the next exercise. Page 33

35 2.5: Aggregate Fields in Report Builder The current report displays all the data that we want to see. However, in might be helpful to add subtotals for total hours. Subtotals in Report Builder are automatically created when an aggregate field is added to the report. Exercise: Creating an Aggregate Field in Report Builder A. Click on New Field, located in the upper right area of the field list on the left side of the screen. B. In the Define Formula dialog box, type Total Labor Hours in the field name textbox. Page 34

36 C. Click the Functions tab and expand Aggregate by clicking on the +. Select Sum by double-clicking. Page 35

37 D. In the Define Formula dialog box, click on the Fields tab. Scroll down and double-click on Total Hours in the field list. This will insert the Total Hours field name after Aggregate in the formula area of the dialog box. Page 36

38 E. The newly created aggregate field is added to the field list. F. Drag the field to the last position in the design area, to the right of the existing Total Hours field. Note the subtotal rows added to the report, below the Total Labor Hours field. Page 37

39 G. Click Run Report to view results. Subtotals now display for each of the groups in our report. Click on Design Report to return to the previous screen. H. Delete the Total Hours field originally added to the report. Format the Total Labor Hours field to display two decimal places. Repeat the formatting for each of the aggregate value fields in the blue rows. I. At this point, please feel free to ask any questions. After the brief question and answer period, we will proceed to the next exercise Page 38

40 2.6: Filtering Fields in Report Builder Adding filters to our report will allow us to eliminate data that we do not wish to see. Exercise: Filtering Data in Report Builder A. Click on Filter, located in the upper right area of the field list on the left side of the screen. Page 39

41 B. Drag the Total Labor Hours aggregate field to the white area on the right of the Filter Data dialog box. C. In the Filter Data dialog box, click on Equals and select Greater Than from the list of options. Enter 0 in the textbox, replacing (unspecified). Page 40

42 D. Click Run Report to view results. Subtotals now display for each of the groups in our report. Click on Design Report to return to the previous screen. E. Click on Filter to open the Filter Data dialog box. Drag the Job Job Number field under the existing Total Labor Hours filter. Right-click on the field name Job Job Number and select Prompt. Click OK to close the dialog box. F. Click Run Report to view results. G. At this point, please feel free to ask any questions. After the brief question and answer period, we will proceed to the next exercise. Page 41

43 2.7: Creating Reports in Excel Using SQL queries, reports can be created in Excel. Data in those reports can then be filtered and formatted with the standard Excel tools. Exercise: Creating a Report in Excel A. Click on Excel on your desktop and create a new blank workbook. B. Go to the Data tab. In the Get External Data section, select From Microsoft Query. C. Uncheck the checkbox next to Use the Query Wizard to create/edit queries. Select New Data Source and click OK. Page 42

44 D. Enter BUILD2WIN as the name in textbox 1. Select SQL server from the dropdown list in textbox 2. E. Click Connect. Page 43

45 F. The SQL Server Login dialog box will open. In the Server drop-down box, select the BID2WIN instance. The Use Trusted Connection checkbox is checked by default. Click Options. Page 44

46 G. In the Options section of the SQL Server Login dialog box, select the BUID2WIN database. Click OK. Page 45

47 H. The SQL Server Login dialog box will close. Click OK in the Create New Data Source dialog box. I. Click OK in the Choose Data Source dialog box. Page 46

48 J. The Add Tables dialog box will open. Add the following tables to the Microsoft Query tool: FilteredFieldLogMaterielJob, FilteredFieldLogMaterial and FilteredFieldLogMaterialJobAccount. K. Create the following joins: From the FilteredFieldLogMaterielJob, join the FieldLogMaterialREF to the FilteredFieldLogMaterial ObjectID. From the FilteredFieldLogMaterialJobAccount, join the FieldLogMaterialREF to the FilteredFieldLogMaterial ObjectID. Page 47

49 L. Select the following fields, by double clicking on the field name in the appropriate table: In the FilteredFieldLogMaterial table, double-click on Vendor_CompanyName. In the FilteredFieldLogMaterielJob table, double-click on Job_JobNumber, FieldLog_FieldLogID, Material_Description and DeliveredQuantity. In the FilteredFieldLogMaterialJobAccount table, double-click on UsedQuantity, UnitCost and MaterialDollars. M. In the File menu, select Return Data to Microsoft Excel. Page 48

50 N. You will be returned to Excel. Click OK in the Import Data Dialog Box. O. Your data is now visible in your Excel spreadsheet. Page 49

51 P. To the right of each column header, a drop down arrow provides access to sorting and filtering options. Q. At this point, please feel free to ask any questions. After the brief question and answer period, we will proceed to the next exercise. Page 50

52 Part II Summary In Part II of this workshop, you performed the following exercises: Exploring the Report Manager Creating a Report Using Report Builder Change the Field Grouping in Report Builder Formatting in Report Builder Creating an Aggregate Field in Report Builder Filtering Data in Report Builder Creating Reports in Excel We will now take a quick break before beginning Part III. Page 51

53 Advanced Report Writing, Part III Part III Objective In Part III of this workshop, we will cover the following areas: 1. Editing Existing Reports Using Microsoft Visual Studio 2. Creating a New Report Using Microsoft Visual Studio 3. Formatting Reports Using Microsoft Visual Studio 4. Adding a Parameter to Reports Using Microsoft Visual Studio 5. Uploading New Reports to Report Manager 6. Adding New Reports to BUILD2WIN Page 52

54 3.1: Editing Existing Reports Using Microsoft Visual Studio Visual Studio is powerful report authoring/editing software developed by Microsoft. Users have the ability to use complex SQL queries to select data and then layout their report using a graphical interface. Exercise: Editing an Existing Report Using Visual Studio A. Double click the BUILD2WIN Reports Manager icon on your desktop. Your browser will open to the Report Manager. Click on the Job Item Performance Summary report. Page 53

55 B. Enter job number in the Job Number textbox and view the report. While the report contains useful information, it does not provide the name of the Business Unit or the status of the job. We will edit the report to add these fields. Page 54

56 C. Click the Properties tab to view the report properties. Click Edit in the Report Definition area. D. Save the report to the Desktop. E. On the desktop, click on Visual Studio 2005 to open the program. Page 55

57 F. In Visual Studio 2005, go to File and select New, then Project. G. Select Report Server Project, accept the default name, Report Project 1 and click OK. Page 56

58 H. In the Solutions Explorer on the right side of the screen, right-click on Reports and select Add, then Existing Item. I. Click Desktop on the left side of the Add Existing Item dialog box for Report Project 1. Page 57

59 J. Double-click the newly added Job Item Performance Summary report file. K. The report will open in to the Layout tab. We must make some additions to one of the underlying queries. Click the Data tab. L. Click OK on the dialog box warning us that the data source was not found. (Since we are going to reinstall this report to the original location we can ignore this and all similar subsequent messages.) Page 58

60 M. Click on the ellipsis for the JobInfoDataSet. N. In the Query tab of the Dataset dialog box, add a comma after FilteredJob.ProjectManager_FullName and press Enter. Page 59

61 O. Add FilteredJob.BusinessUnit_UniqueName, followed by a comma. Next add FilteredJob.JobStatus_Name (do NOT add a comma following this last entry.) Click the Fields tab. Page 60

62 P. Add BusinessUnit_UniqueName and JobStatus_Name to the Field Name and Value text boxes on the Fields tab. Click OK to close the Data Source warning dialog box. Q. Click the Layout tab.. Page 61

63 R. We will now add the new fields to the existing report. Click on Project Manager in the upper left of the report layout. Right-click on the Table Row symbol that appears to the left of the Project Manager label. Select Insert Row Below. S. Type Business Unit in the text box in the first column. Right-click in the following text box in the second column and select Expression. Page 62

64 T. In the Edit Expression dialog box, click on Fields (JobInfoDataSet) in the column on the left. In the column on the right, double-click on BusinessUnit_Unique_Name. (This inserts the expression =Fields!BusinessUnit_Unique_Name.Value in the expression box. Click OK. U. Repeat the previous steps to add Job Status to the report. V. At this point, please feel free to ask any questions. After the brief question and answer period, we will proceed to the next exercise. Page 63

65 3.2: Creating a New Report Using Microsoft Visual Studio In addition to editing existing reports, new reports can be created using Visual Studio. Using the Report Wizard, we will create a report based on a query, format it on the Layout tab and install it in Report Manager and BUILD2WIN. Exercise: Creating a New Report Using Visual Studio A. In Visual Studio 2005, go to File and select New, then Project. B. Select Report Server Project, accept the default name, Report Project 2 and click OK. Page 64

66 C. Project 2 is created and the Report Wizard dialog box appears. Click Next. Page 65

67 D. On the Select the Data Source page, under New Data Source, enter BUILD2WIN in the Name field. Click Edit. Page 66

68 E. Drop down the Server Name combo box arrow. When the list of available servers appears, select BID2WIN-WINXPPR\BID2WIN. (It may take up to 60 seconds for the list to appear.) Once the server is selected, drop down the combo box arrow for the Select or enter a database name box in the Connect to a database section of the dialog box. Page 67

69 F. Click Test Connection. Click OK in the Test Connection Succeeded dialog box. Click OK to create your connection string. Page 68

70 G. With your connection string in the connection string area of the Select the Data Source dialog box, click Next. Page 69

71 H. Click Query Builder on the Design the Query page. Page 70

72 I. Click on the Generic Query Designer icon in the upper left corner of the Query Builder. J. In the Diagram pane, add the FilteredJob and FilteredEstimateItem views and close the Add Table dialog box. Page 71

73 K. Create a join between the ObjectID in the FilteredJob view and the JobREF in the FilteredEstimateItem view. Page 72

74 L. In the FilteredJob view, check the Customer_CompanyName, JobNumber and Title checkboxes. In the FilteredEstimateItem view, check the following checkboxes: ItemNumber,.Description, Estimated_EmployeeDollars, Estimated_EquipmentDollars, Estimated_MaterialDollars, Estimated_SubcontractorDollars, Estimated_MiscellaneousDollars, Estimated_TotalDollars, and TotalPrice. Click OK. Your query is entered in the Query String area of the Design the Query page. Click Next. Page 73

75 M. Select Tabular in the Select the Report Type dialog box and click Next. Page 74

76 N. The Design the Table page will allow us to group data in the table. A field is selected from the Available Fields list on the left, then moved to the Displayed Fields section by click on Page, Group or Details. Page 75

77 O. Select JobNumber and click Page. JobNumber moved to the Page section of Displayed fields. Select Title, then click Page. Next select Customer_CompanyName and click Page. Page 76

78 P. Select the remaining fields and move them to the Group and Details sections, as shown below. Click Next. Page 77

79 Q. Accept the default setting on the next two pages-choose Table Layout and Choose the Table Style by clicking Next. Page 78

80 R. Select the default locations for the Report Server and Deployment folder by clicking Next. Page 79

81 S. In the Report Name field of the Completing the Wizard page, enter the report name: Estimated Item Costs by Job. Click Finish. Page 80

82 T. The report is created and the Layout tab is displayed. Click the Preview tab to preview your report. Page 81

83 U. On the Preview tab, page through the report by clicking on the Next Page icon. V. At this point, please feel free to ask any questions. After the brief question and answer period, we will proceed to the next exercise. Page 82

84 3.3: Formatting Reports Using Microsoft Visual Studio Although much of the initial report formatting is handled by the Report Wizard, there will be fields that require additional formatting to give your report a finished look. Exercise: Formatting Reports Using Visual Studio A. Preview the Estimated Item Costs by Job report that was just created. Note that several of the columns are too narrow for the headers and the dollar amounts are displaying four decimal places. Click on the Layout tab. B. Click the View menu at the top of the page and select Toolbars. Select the Report Formatting toolbar, if not already checked. Page 83

85 C. Select the first column header, Item Number. Hold down the shift key and select the last column header, Total Price. The entire row is selected. Page 84

86 D. With the row selected, change the font size to 8. E. Go to the column divider above and to the right of the header Description. Make the column wider by dragging the divider to the right slightly. Page 85

87 F. Right-b in the bottom row of the first column marked Estimate. Select Properties. Page 86

88 G. In the Textbox Properties dialog box, click the Format tab, then click the ellipsis, as shown below: Page 87

89 H. Click Currency in the Choose Format dialog box, then click OK to close the Properties dialog box. Repeat the process for the remaining fields to the right. I. Click the Preview tab to preview your report. Save your report by clicking on the Save icon in the upper right of the screen. J. At this point, please feel free to ask any questions. After the brief question and answer period, we will proceed to the next exercise. Page 88

90 3.4: Adding a Parameter to Reports Using Microsoft Visual Studio Although much of the initial report formatting is handled automatically, reports can sometimes provide more information than we re looking for. Parameters allow us to restrict the amount of information in a report to just what we want to see. We will add Job Number as a parameter to our report. Exercise: Adding a Parameter to Reports Using Visual Studio A. In Visual Studio. Click the Data tab for the Estimated Item Costs by Job report. In the Criteria pane, go to Filter in the JobNumber row. The Query Designer corrects the entry to =@JobNumber. Page 89

91 B. Go to the Report menu and select Report Parameters. C. Click the Add button. Enter JobNumber in the Name textbox. Type Enter Job Number (required) in the Prompt textbox. Allow Null Value and Allow Blank Value should be unchecked. Click OK. Page 90

92 D. Preview your report by clicking on the Preview tab. Enter in the Job Number field. E. At this point, please feel free to ask any questions. After the brief question and answer period, we will proceed to the next exercise Page 91

93 3.5: Uploading New Reports to Report Manager Once you have completed your report, you will want to upload it to Report Manager so will be available for use. Exercise: Uploading Reports to Report Manager A. Click on the BUILD2WIN Report Manager shortcut on your desktop. Click Upload File. Page 92

94 B. Click the Browse button, then click on My Documents in the Choose File to Upload dialog box. Select the Visual Studio 2005 Folder, then Projects, and then Report Project2. In the Report Project2 subfolder, select the report Estimated Item Costs by Job. Click OK. C. The Estimated Item Costs by Job is added to the Report Manager and marked!new. Click on Show Details. Page 93

95 D. Click the Properties icon for the Estimated Item Costs by Job E. Click Data Source, then select A Shared Data Source and click Browse. F. Expand the folders, if necessary and select BUILD2WIN. (Note-make sure you select BUILD2WIN and not the BUILD2WIN 2.0 Model) Click OK. Page 94

96 G. Click Apply at the bottom of the Data Source page. H. View your report by clicking the View tab. W. At this point, please feel free to ask any questions. After the brief question and answer period, we will proceed to the next exercise. Page 95

97 3.6: Adding New Reports to BUILD2WIN After your new report has been uploaded to Report Manager, it can be added to BUILD2WIN for easy access. Exercise: Adding Reports to BUILD2WIN A. Open BUILD2WIN by clicking on the shortcut on the desktop Go to Reports. Click Add Reports on the upper right side of the page. B. Enter Estimated Item Costs by Job in the Name textbox. Enter a description in the Description textbox. Page 96

98 C. Drop down the combo box arrow and select /BUILD2WIN/Estimated Item Costs by Job. Select the desired report category and click Save. D. Click View Report List. Page 97

99 E. Click on Item Costs by Job to view the report in BUILD2WIN. F. At this point, please feel free to ask any questions. Page 98

100 Part III Summary In Part III of this workshop, you performed the following exercises: Editing an Existing Report Using Visual Studio Creating a New Report Using Visual Studio Formatting Reports Using Visual Studio Adding a Parameter to Reports Using Visual Studio Uploading Reports to Report Manager Adding New Reports to BUILD2WIN Page 99

101 Summary Lab Summary In this workshop, you performed the following exercises: Examining a Table Using Microsoft SQL Server Management Studio Creating a Simple Query Using Microsoft SQL Server Management Studio Refining a Query Using Microsoft SQL Server Management Studio Creating a Query with Multiple Tables Using Microsoft SQL Server Management Studio Exploring the Report Manager Creating a Report Using Report Builder Change the Field Grouping in Report Builder Formatting in Report Builder Creating an Aggregate Field in Report Builder Filtering Data in Report Builder Creating Reports in Excel Editing an Existing Report Using Visual Studio Creating a New Report Using Visual Studio Formatting Reports Using Visual Studio Adding a Parameter to Reports Using Visual Studio Uploading Reports to Report Manager Adding New Reports to BUILD2WIN Shutting Down BID2WIN and BUILD2WIN Close any open BID2WIN and or BUILD2WIN windows, and any other open applications. On the desktop of your lab workstation, double-click the Reset Lab Databases icon and wait for the DOS window to disappear. This step returns your databases to their original states, resetting the workstation for the next user. Please NOTE: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at Your feedback is valuable to us! Please be sure to complete an evaluation form for this Lab. Evaluation forms have been distributed to all lab workstations, and are also available at the Lab Reception Area. Page 100

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

Creating a Patch Management Dashboard with IT Analytics Hands-On Lab

Creating a Patch Management Dashboard with IT Analytics Hands-On Lab Creating a Patch Management Dashboard with IT Analytics Hands-On Lab Description This lab provides a hands-on overview of the IT Analytics Solution. Students will learn how to browse cubes and configure

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

SQL Server 2005: Report Builder

SQL Server 2005: Report Builder SQL Server 2005: Report Builder Table of Contents SQL Server 2005: Report Builder...3 Lab Setup...4 Exercise 1 Report Model Projects...5 Exercise 2 Create a Report using Report Builder...9 SQL Server 2005:

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

BUILD2WIN Lab 2.6. What s New in BUILD2WIN?

BUILD2WIN Lab 2.6. What s New in BUILD2WIN? BUILD2WIN Lab 2.6 What s New in BUILD2WIN? Please Note: Please do not remove lab binders or handouts from the Software Solutions Center. Electronic copies of all lab documentation are available for download

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 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

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

Results CRM 2012 User Manual

Results CRM 2012 User Manual Results CRM 2012 User Manual A Guide to Using Results CRM Standard, Results CRM Plus, & Results CRM Business Suite Table of Contents Installation Instructions... 1 Single User & Evaluation Installation

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

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 Training@csun.edu http://www.csun.edu/training TABLE

More information

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

Introduction to MS WINDOWS XP

Introduction to MS WINDOWS XP Introduction to MS WINDOWS XP Mouse Desktop Windows Applications File handling Introduction to MS Windows XP 2 Table of Contents What is Windows XP?... 3 Windows within Windows... 3 The Desktop... 3 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

Create an Excel BI report and share on SharePoint 2013

Create an Excel BI report and share on SharePoint 2013 2013 Create an Excel BI report and share on SharePoint 2013 Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web

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

Business Objects 4.1 Quick User Guide

Business Objects 4.1 Quick User Guide Business Objects 4.1 Quick User Guide Log into SCEIS Business Objects (BOBJ) 1. https://sceisreporting.sc.gov 2. Choose Windows AD for Authentication. 3. Enter your SCEIS User Name and Password: Home Screen

More information

Excel 2003 Tutorial I

Excel 2003 Tutorial I This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial I Spreadsheet Basics Screen Layout Title bar Menu bar

More information

Build Your First Web-based Report Using the SAS 9.2 Business Intelligence Clients

Build Your First Web-based Report Using the SAS 9.2 Business Intelligence Clients Technical Paper Build Your First Web-based Report Using the SAS 9.2 Business Intelligence Clients A practical introduction to SAS Information Map Studio and SAS Web Report Studio for new and experienced

More information

Visualization with Excel Tools and Microsoft Azure

Visualization with Excel Tools and Microsoft Azure Visualization with Excel Tools and Microsoft Azure Introduction Power Query and Power Map are add-ins that are available as free downloads from Microsoft to enhance the data access and data visualization

More information

MICROSOFT ACCESS 2003 TUTORIAL

MICROSOFT ACCESS 2003 TUTORIAL MICROSOFT ACCESS 2003 TUTORIAL M I C R O S O F T A C C E S S 2 0 0 3 Microsoft Access is powerful software designed for PC. It allows you to create and manage databases. A database is an organized body

More information

Microsoft Access 2010- Introduction

Microsoft Access 2010- Introduction Microsoft Access 2010- Introduction Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. Examples of databases are an

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

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

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500 Outlook Email User Guide IS TRAINING CENTER 833 Chestnut St, Suite 600 Philadelphia, PA 19107 215-503-7500 This page intentionally left blank. TABLE OF CONTENTS Getting Started... 3 Opening Outlook...

More information

Creating and Using Forms in SharePoint

Creating and Using Forms in SharePoint Creating and Using Forms in SharePoint Getting started with custom lists... 1 Creating a custom list... 1 Creating a user-friendly list name... 1 Other options for creating custom lists... 2 Building a

More information

Working with SQL Server Integration Services

Working with SQL Server Integration Services SQL Server Integration Services (SSIS) is a set of tools that let you transfer data to and from SQL Server 2005. In this lab, you ll work with the SQL Server Business Intelligence Development Studio to

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

Reduced Quality Sample

Reduced Quality Sample Access 2007 Essentials PART ONE Mobile MOUSe Access 2007 Essentials Version # 1.1 Part One 08/08/2010 11:20 About this Course Microsoft Access is the database application included with Microsoft Office.

More information

Web Intelligence User Guide

Web Intelligence User Guide Web Intelligence User Guide Office of Financial Management - Enterprise Reporting Services 4/11/2011 Table of Contents Chapter 1 - Overview... 1 Purpose... 1 Chapter 2 Logon Procedure... 3 Web Intelligence

More information

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface...

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface... 2 CONTENTS Module One: Getting Started... 6 Opening Outlook... 6 Setting Up Outlook for the First Time... 7 Understanding the Interface...12 Using Backstage View...14 Viewing Your Inbox...15 Closing Outlook...17

More information

Business Objects Version 5 : Introduction

Business Objects Version 5 : Introduction Business Objects Version 5 : Introduction Page 1 TABLE OF CONTENTS Introduction About Business Objects Changing Your Password Retrieving Pre-Defined Reports Formatting Your Report Using the Slice and Dice

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

IST 195 Lab 11: MS Access

IST 195 Lab 11: MS Access Title of lab: Microsoft Access 2010 IST 195 Lab 11: MS Access Learning goal: Databases are collections of information, and database programs are designed to maintain data in structured tables. In this

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

DataPA OpenAnalytics End User Training

DataPA OpenAnalytics End User Training DataPA OpenAnalytics End User Training DataPA End User Training Lesson 1 Course Overview DataPA Chapter 1 Course Overview Introduction This course covers the skills required to use DataPA OpenAnalytics

More information

WEBFOCUS QUICK DATA FOR EXCEL

WEBFOCUS QUICK DATA FOR EXCEL WEBFOCUS QUICK DATA FOR EXCEL BRIAN CARTER INFORMATION BUILDERS SUMMIT 2008 USERS CONFERENCE JUNE 2008 Presentation Abstract: Even with the growing popularity and evolvement of Business Intelligence products

More information

Learn About Analysis, Interactive Reports, and Dashboards

Learn About Analysis, Interactive Reports, and Dashboards Learn About Analysis, Interactive Reports, and Dashboards This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright

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

Microsoft Query, the helper application included with Microsoft Office, allows

Microsoft Query, the helper application included with Microsoft Office, allows 3 RETRIEVING ISERIES DATA WITH MICROSOFT QUERY Microsoft Query, the helper application included with Microsoft Office, allows Office applications such as Word and Excel to read data from ODBC data sources.

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

Microsoft Access Basics

Microsoft Access Basics Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision

More information

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. 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

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can

More information

Microsoft PowerPoint 2010

Microsoft PowerPoint 2010 Microsoft PowerPoint 2010 Starting PowerPoint... 2 PowerPoint Window Properties... 2 The Ribbon... 3 Default Tabs... 3 Contextual Tabs... 3 Minimizing and Restoring the Ribbon... 4 The Backstage View...

More information

Section DB DATABASE - Microsoft Access

Section DB DATABASE - Microsoft Access Section DB DATABASE - Microsoft Access About Access 2007 Access 2007 is part of Microsoft Office 2007. It is an important productivity tool for business. Microsoft Access provides an inexpensive yet powerful

More information

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6.2 Content Author's Reference and Cookbook Rev. 091019 Sitecore CMS 6.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

Creating and Using Databases with Microsoft Access

Creating and Using Databases with Microsoft Access CHAPTER A Creating and Using Databases with Microsoft Access In this chapter, you will Use Access to explore a simple database Design and create a new database Create and use forms Create and use queries

More information

MICROSOFT OUTLOOK 2011 READ, SEARCH AND PRINT E-MAILS

MICROSOFT OUTLOOK 2011 READ, SEARCH AND PRINT E-MAILS MICROSOFT OUTLOOK 2011 READ, SEARCH AND PRINT E-MAILS Lasted Edited: 2012-07-10 1 Find the Inbox... 3 Check for New Mail... 4 Manually check for new messages... 4 Change new incoming e-mail schedule options...

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

Logi Ad Hoc Reporting Report Design Guide

Logi Ad Hoc Reporting Report Design Guide Logi Ad Hoc Reporting Report Design Guide Version 10.2 Last Updated: May 2012 Page 2 Table of Contents INTRODUCTION... 4 What is Logi Ad Hoc Reporting?... 5 CHAPTER 1 Getting Started... 6 Learning the

More information

How To Create A Report In Excel

How To Create A Report In Excel Table of Contents Overview... 1 Smartlists with Export Solutions... 2 Smartlist Builder/Excel Reporter... 3 Analysis Cubes... 4 MS Query... 7 SQL Reporting Services... 10 MS Dynamics GP Report Templates...

More information

6. If you want to enter specific formats, click the Format Tab to auto format the information that is entered into the field.

6. If you want to enter specific formats, click the Format Tab to auto format the information that is entered into the field. Adobe Acrobat Professional X Part 3 - Creating Fillable Forms Preparing the Form Create the form in Word, including underlines, images and any other text you would like showing on the form. Convert the

More information

Using Outlook 2010 for Email

Using Outlook 2010 for Email Using Outlook 2010 for Email Workbook Edition 1 June 2013 Document Reference: 3774 Contents Using Outlook 2010 for Email 1. Introduction Microsoft Outlook... 1 Outlook Basics... 1 2. The Ribbon Mail, Contacts

More information

1.5 MONITOR. Schools Accountancy Team INTRODUCTION

1.5 MONITOR. Schools Accountancy Team INTRODUCTION 1.5 MONITOR Schools Accountancy Team INTRODUCTION The Monitor software allows an extract showing the current financial position taken from FMS at any time that the user requires. This extract can be saved

More information

Document Manager 2.0. Corporate Administrator Guide

Document Manager 2.0. Corporate Administrator Guide Document Manager 2.0 Corporate Administrator Guide Introduction to the Corporate Administrator Guide Document Manager 2.0 is the Web to Print ordering application for OfficeMax ImPress. Many features and

More information

Outlook Web Access (OWA) User Guide

Outlook Web Access (OWA) User Guide Outlook Web Access (OWA) User Guide September 2010 TABLE OF CONTENTS TABLE OF CONTENTS... 2 1.0 INTRODUCTION... 4 1.1 OUTLOOK WEB ACCESS SECURITY CONSIDERATIONS... 4 2.0 GETTING STARTED... 5 2.1 LOGGING

More information

Maximizing the Use of Slide Masters to Make Global Changes in PowerPoint

Maximizing the Use of Slide Masters to Make Global Changes in PowerPoint Maximizing the Use of Slide Masters to Make Global Changes in PowerPoint This document provides instructions for using slide masters in Microsoft PowerPoint. Slide masters allow you to make a change just

More information

Creating Personal Web Sites Using SharePoint Designer 2007

Creating Personal Web Sites Using SharePoint Designer 2007 Creating Personal Web Sites Using SharePoint Designer 2007 Faculty Workshop May 12 th & 13 th, 2009 Overview Create Pictures Home Page: INDEX.htm Other Pages Links from Home Page to Other Pages Prepare

More information

Advanced Excel 10/20/2011 1

Advanced Excel 10/20/2011 1 Advanced Excel Data Validation Excel has a feature called Data Validation, which will allow you to control what kind of information is typed into cells. 1. Select the cell(s) you wish to control. 2. Click

More information

Logi Ad Hoc Reporting Report Design Guide

Logi Ad Hoc Reporting Report Design Guide Logi Ad Hoc Reporting Report Design Guide Version 11.2 Last Updated: March, 2014 Page 2 Table of Contents INTRODUCTION... 4 What is Logi Ad Hoc Reporting?... 5 CHAPTER 1 Getting Started... 6 Learning the

More information

Office365 at Triton College

Office365 at Triton College Office365 at Triton College Logging in to Office365 The new log in page for Triton email is http://outlook.com/triton.edu At that page, enter your username in this format: firstnamelastname@triton.edu

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

A database is a collection of data organised in a manner that allows access, retrieval, and use of that data.

A database is a collection of data organised in a manner that allows access, retrieval, and use of that data. Microsoft Access A database is a collection of data organised in a manner that allows access, retrieval, and use of that data. A Database Management System (DBMS) allows users to create a database; add,

More information

Utilizing Microsoft Access Forms and Reports

Utilizing Microsoft Access Forms and Reports Utilizing Microsoft Access Forms and Reports The 2014 SAIR Conference Workshop #3 October 4 th, 2014 Presented by: Nathan Pitts (Sr. Research Analyst The University of North Alabama) Molly Vaughn (Associate

More information

Microsoft Office Access 2007 Basics

Microsoft Office Access 2007 Basics Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: TRAININGLAB@MONROE.LIB.MI.US MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER

More information

2. Building Cross-Tabs in Your Reports Create a Cross-Tab Create a Specified Group Order Filter Cross-Tab by Group Keep Groups Together

2. Building Cross-Tabs in Your Reports Create a Cross-Tab Create a Specified Group Order Filter Cross-Tab by Group Keep Groups Together Crystal Reports Level 2 Computer Training Solutions Course Outline 1. Creating Running Totals Create a Running Total Field Modify a Running Total Field Create a Manual Running Total on Either Detail Data

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with

More information

NDA-30141 ISSUE 1 STOCK # 200893. CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000. NEC America, Inc.

NDA-30141 ISSUE 1 STOCK # 200893. CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000. NEC America, Inc. NDA-30141 ISSUE 1 STOCK # 200893 CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000 NEC America, Inc. LIABILITY DISCLAIMER NEC America, Inc. reserves the right to change the specifications,

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

What is OneDrive for Business at University of Greenwich? Accessing OneDrive from Office 365

What is OneDrive for Business at University of Greenwich? Accessing OneDrive from Office 365 This guide explains how to access and use the OneDrive for Business cloud based storage system and Microsoft Office Online suite of products via a web browser. What is OneDrive for Business at University

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

OWA - Outlook Web App

OWA - Outlook Web App OWA - Outlook Web App Olathe Public Schools 0 Page MS Outlook Web App OPS Technology Department Last Revised: May 1, 2011 Table of Contents MS Outlook Web App... 1 How to Access the MS Outlook Web App...

More information

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1 Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key

More information

Create a New Database in Access 2010

Create a New Database in Access 2010 Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...

More information

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled

More information

Colligo Email Manager 6.0. Offline Mode - User Guide

Colligo Email Manager 6.0. Offline Mode - User Guide 6.0 Offline Mode - User Guide Contents Colligo Email Manager 1 Key Features 1 Benefits 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 3 Updating Your License Key 3 Managing SharePoint

More information

Getting Started with Excel 2008. Table of Contents

Getting Started with Excel 2008. Table of Contents Table of Contents Elements of An Excel Document... 2 Resizing and Hiding Columns and Rows... 3 Using Panes to Create Spreadsheet Headers... 3 Using the AutoFill Command... 4 Using AutoFill for Sequences...

More information

Check out our website!

Check out our website! Check out our website! www.nvcc.edu/woodbr idge/computer-lab Contact Us Location: Open Computer Lab Seefeldt Building #336 NOVA Woodbridge Campus Hussna Azamy (OCL Supervisor) Phone: 703-878-5714 E-mail:

More information

USER GUIDE. Unit 2: Synergy. Chapter 2: Using Schoolwires Synergy

USER GUIDE. Unit 2: Synergy. Chapter 2: Using Schoolwires Synergy USER GUIDE Unit 2: Synergy Chapter 2: Using Schoolwires Synergy Schoolwires Synergy & Assist Version 2.0 TABLE OF CONTENTS Introductions... 1 Audience... 1 Objectives... 1 Before You Begin... 1 Getting

More information

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS Last Edited: 2012-07-09 1 Access to Outlook contacts area... 4 Manage Outlook contacts view... 5 Change the view of Contacts area... 5 Business Cards view... 6

More information

Infoview XIR3. User Guide. 1 of 20

Infoview XIR3. User Guide. 1 of 20 Infoview XIR3 User Guide 1 of 20 1. WHAT IS INFOVIEW?...3 2. LOGGING IN TO INFOVIEW...4 3. NAVIGATING THE INFOVIEW ENVIRONMENT...5 3.1. Home Page... 5 3.2. The Header Panel... 5 3.3. Workspace Panel...

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

Using SQL Server Management Studio

Using SQL Server Management Studio Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases

More information

Before you may use any database in Limnor, you need to create a database connection for it. Select Project menu, select Databases:

Before you may use any database in Limnor, you need to create a database connection for it. Select Project menu, select Databases: How to connect to Microsoft SQL Server Question: I have a personal version of Microsoft SQL Server. I tried to use Limnor with it and failed. I do not know what to type for the Server Name. I typed local,

More information

Microsoft Access 2007 Introduction

Microsoft Access 2007 Introduction Microsoft Access 2007 Introduction Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. Examples of databases are an

More information

Custom Reporting System User Guide

Custom Reporting System User Guide Citibank Custom Reporting System User Guide April 2012 Version 8.1.1 Transaction Services Citibank Custom Reporting System User Guide Table of Contents Table of Contents User Guide Overview...2 Subscribe

More information

GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS

GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS Last Edited: 2012-07-09 1 Navigate the document interface... 4 Create and Name a new document... 5 Create a new Google document... 5 Name Google documents...

More information

Baylor Secure Messaging. For Non-Baylor Users

Baylor Secure Messaging. For Non-Baylor Users Baylor Secure Messaging For Non-Baylor Users TABLE OF CONTENTS SECTION ONE: GETTING STARTED...4 Receiving a Secure Message for the First Time...4 Password Configuration...5 Logging into Baylor Secure Messaging...7

More information

Microsoft Office. Mail Merge in Microsoft Word

Microsoft Office. Mail Merge in Microsoft Word Microsoft Office Mail Merge in Microsoft Word TABLE OF CONTENTS Microsoft Office... 1 Mail Merge in Microsoft Word... 1 CREATE THE SMS DATAFILE FOR EXPORT... 3 Add A Label Row To The Excel File... 3 Backup

More information

User Guide for TeamDirection Dashboard

User Guide for TeamDirection Dashboard User Guide for TeamDirection Dashboard Table Of Contents Introduction...1 Learning TeamDirection Dashboard...1 New in Dashboard...3 Getting Started...4 Dashboard Features...5 Folders...5 Projects View

More information

Colligo Email Manager 6.0. Connected Mode - User Guide

Colligo Email Manager 6.0. Connected Mode - User Guide 6.0 Connected Mode - User Guide Contents Colligo Email Manager 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 3 Updating Your License

More information

EMAIL QUICK START GUIDE

EMAIL QUICK START GUIDE IT Services Microsoft Outlook 2010 EMAIL QUICK START GUIDE Contents What is Outlook?...2 Quick Guide to Email...2 Create a new e-mail message...2 Forward or reply to an e-mail message...2 Creating new

More information

WHAT S NEW IN OUTLOOK 2010 & HOW TO CUSTOMIZE IT

WHAT S NEW IN OUTLOOK 2010 & HOW TO CUSTOMIZE IT WHAT S NEW IN OUTLOOK 2010 & HOW TO CUSTOMIZE IT THE RIBBON... 2 CONTEXTUAL TABS... 4 THE FILE TAB... 4 DIALOG BOXES... 5 MINIMIZING THE RIBBON... 5 CUSTOMIZING THE RIBBON... 6 CUSTOMIZING THE QUICK ACCESS

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

Creating Interactive PDF Forms

Creating Interactive PDF Forms Creating Interactive PDF Forms Using Adobe Acrobat X Pro Information Technology Services Outreach and Distance Learning Technologies Copyright 2012 KSU Department of Information Technology Services This

More information