Welcome to 5.0 Automation Library. Using this library you can automate the features for Excel.

Size: px
Start display at page:

Download "Welcome to 5.0 Automation Library. Using this library you can automate the features for Excel."

Transcription

1 Introduction Welcome to 5.0 Automation Library. Using this library you can automate the features for Excel. Please Note: While Palisade Corporation will make every effort to maintain compatibility with the information presented here, we can not guarantee that we will do so in future releases

2 Project Overview 5.0 for Excel Object Library Object Model Classes Class Module Risk RiskApplicationSettings RiskFitDefinition RiskFitDefinitionCollection RiskFitInput RiskFitResult RiskFitResultCollection RiskLibraryServer RiskOL RiskProductInformation RiskSimResultCollection RiskSimulatedResult RiskSimulation RiskSimulationSettings The application object. Contains a collection of properties that control general application settings. The definition of a fit which exists in a currently open Excel workbook. A collection of all RiskFitDefinitions associated with all open Excel workbooks. Contains summary information about the input data of a fit. The results of a single distribution fitting operation. A collection of RISKFitResult objects, produced by performing a distribution fitting operation. Provides an object for the control of Library. Contains utility enumeration, structures, and constant values. Contains information about the currently running copy of application, including licensing and registration information. An object which allows access to the results of the most recently simulation. Contains simulation results for input or output. An object simulations can be setup, started, and results analyzed. An object where simulation settings are maintained. Public Enumerations

3 Enumeration RiskAutomaticResultsDisplay RiskCellFormattingStyle RiskCollectDistributionSamples RiskDistributionDisplayFormat RiskEdition RiskFitChiSqBinArrangement RiskFitDataType RiskFitFilterType RiskFitLimitType RiskFitMethod RiskFitStatistic RiskInterfaceMode RiskLanguageID RiskLibraryAvailability RiskProductType RiskRandomNumberGenerator RiskRegressionCoefficientFormat RiskReportPlacement RiskReportSelection RiskResultsStorageLocation RiskSamplingType RiskScalingFactor RiskSimulationCompletionStatus RiskStandardRecalcBehavior RiskStaticValueType RiskSummaryGraphCenterlineStatistic RiskSummaryGraphRange RiskSwapPreviewChanges RiskTornadoDisplayFormat RiskWindowListDisplay RiskWindowSize An enumeration of the possible automatic results (if any) that can be automatically displayed when simulation is run. An enumeration of different can automatically format spreadsheet cells inputs or outputs. An enumerated list of possible ways distribution samples can be collected. An enumeration of distribution graph display formats. An enumerated list product editions. An enumeration of bin arrangments that can be used for the chi-squared goodness-of-fit test. An enumeration of the possible types of input data for a fitting operation. An enumeration of the possible fit filters that can be applied. An enumeration of possible limits (or boundary conditions) that can be applied to an extremum of a distribution. An enumeration which specified possible methods of fitting distribution to data. An enumeration of fitting statistics. An enumerated list of possible operational states of application. An enumerated list of the possible can be using. An enumeration of the possible states of availability of Library. An enumeration product types. An enumerated list of random number generators available for use An enumeration of possible regression coefficient formats. An enumeration of possible destination workbooks for a report. An enumeration of Excel reports. An enumeration of possible choices where and can stored simulation results. An enumeration of sampling types that can be used during a simulation. An enumerated list of named scaling factors. An enumerated list of possible results from a simulation. An enumerated list of distribution functions will return values when a simulation is not in progress. An enumeration of possible static values to be used when an RiskStaticValue is not specified for a function. An enumerated list of different summary graph center line statistics. An enumerated list of possible summary graph ranges. An enumeration of possible ways the change preview dialog will be displayed when user swaps in functions. An enumeration of tornado graph display formats. An enumeration of values controling how Windows List will be displayed. An enumeration of default window sizes.

4 Public UDTs UDT RiskChiSqBinInformation RiskPredefinedFit RiskScenarioData RiskSensitivityData

5 Getting Started To you must first make a reference to 5.0 Object Library. From within the VBA Editor window, make sure your VBA project is active, and then select the Tools / References menu item. In the References dialog, choose the item labeled 5.0 for Excel Object Library". (Please note: In previous versions you made reference directly to Add-in file, called either Risk.xla or AtRiskXL. You should not make reference to this file in order to 5.0). Once you make this reference you will have access to the object model via the root "Risk" object. For example, you can run simulation of 150 iterations and display the mean of the output named "Profit" with the following code: Public Sub RunMySimulation Risk.Simulation.Settings.NumIterations = 150 Risk.Simulation.Start MsgBox Risk.Simulation.Results.GetSimulatedOuput("Profit").Mean See the RiskMacro.xls example for a more complicated example.

6 Risk Object The application object. For a list of all members defined in this module, see Risk members. Object Model This object is available globally (in VBA) once you have made reference to Developer's Kit Library. Risk Members

7 Risk Object Members Public Methods GenerateExcelReports Creates one or reports in Excel. Help context help Sample Returns a sample from distribution. UnloadAddin Asynchronously shuts WriteWorkbookInformation information to the specified Excel workbook. Public Properties Addin Returns an Excel Workbook object for add-in (.xla) file. ApplicationSettings DisplayAlerts Returns a RISKApplicationSettings object, which contains all the user application settings. Controls will display messages during execution. ExcelApplication Returns the Excel Application object is working within. Fits Returns a collection of fits currently defined in application. InterfaceMode Library ProductInformation Simulation Returns the current "interface" mode This property can be used to determine the state of operation of the product. Returns a RiskLibraryServer Object which allows you to interact with Library. Returns a RiskProductInformation Object which contains information about the current running copy Returns a RiskSimulation object, from which you can change simulation settings, start simualation, and get the results of a simulation. Events ApplicationSettingsChanged UserInterfaceModeChanged Raised when any settings in the RiskApplicationSettings object have been changed by the user. Raised interface mode is changing. Risk Overview

8 GenerateExcelReports Method Creates one or reports in Excel. Syntax Public Function GenerateExcelReports( _ ByVal p_whichreports As RiskReportSelection _ ) As Workbook Parameters p_whichreports Value RiskSimulationReportQuick RiskSimulationReportInputResultsSummary RiskSimulationReportOutputResultsSummary RiskSimulationReportDetailedStatistics RiskSimulationReportData RiskSimulationReportSensitivity RiskSimulationReportScenarios RiskSimulationReportTemplateSheets RiskModelReportInputs RiskModelReportOutputs RiskModelReportCorrelations A "Quick" Report, one page per output, with a summary of the most important information for each output. A summary report of all the simulated inputs. This matches the information in the Input tab of Results Summary window. A summary report of all the simulated outputs. This matches the information in the Output tab of Results Summary window. A set of detailed statistical results for all inputs and outputs. This matches the information in Detailed Statistics window. The complete set of simulation data for all inputs and outputs. This matches the information in Data window. The sensitivity results for all outputs. This matches the information in Sensitivities window. The scenarios report for all outputs. This matches the information in Scenarios window. A static copy of all open template sheet. Template sheets must start with the prefix "RiskTemplate_". A report summarizing all the currently defined inputs. This matches the information in the Inputs tab of Model window. A report summarizing all the currently defined outputs. This matches the information in the Outputs tab of Model window. A report summarizing all the currently defined correlations. This matches the information in the Correlations tab of Model window. Return Type Excel Workbook Object - the workbook where the reports were created. You can add the various report constants together to generate multiple reports at the same time. The user's current report selection can be gotten from Risk.SimulationSettings.ReportsToGenerate property.

9 The placement of the reports is controled by several report settings in the Risk.ApplicationSettings object. [[New ] (Visual Basic)] 'Run a simulation and then generate the input and output result summary reports Public Sub GenerateResultSummaryReports() Risk.Simulation.Start Risk.GenerateExcelReports RiskSimulationReportInputResultsSummary + RiskSimulationReportOutputResultsSumm Risk Object ReportGraphFormat Property ReportOverwriteExisting Property ReportPlacement Property ReportReuseNewWorkbook Property ReportSelected Property ReportsToGenerate Property AutomaticallyGenerateReports Property RiskReportSelection Enumeration

10 Help Method context help Syntax Public Sub Help( _ ) Optional ByVal p_contextid As Long _ Parameters p_contextid The context identifier for the help file page that should be displayed. If left blank, the file will display the first page. Risk Object

11 Sample Method Returns a sample from distribution. Syntax Public Function Sample( _ ByVal p_expression As String, _ Optional ByVal p_contextworksheet As Worksheet = Nothing _ ) As Variant Parameters p_expression distribution function. The must be specified in US/English format and have function syntax. It may have references to spreadsheet cells (in A1 format only) but those references will be resolved with respect to the ContextWorksheet argument. p_contextworksheet An optional worksheet parameter which is used to resolve any spreadsheet references in the specified expression. If omitted, the active worksheet is implied. Return Type Variant - Most often this will be a numeric value. However, illegal distribution definition will return error variants in the standard Excel manner. For example, Excel's #VALUE! error is represented by an Error Variant of type [[New ] (Visual Basic)] 'Samples ten independent Normal(0,1) distributions, adds up the result, and displays it. Public Sub SampleNormals() Dim result As Variant Dim i As Integer For i = 1 To 10 result = result + Risk.Sample("RiskNormal(0,1)") Next i MsgBox "The result is " & result Risk Object

12 UnloadAddin Method Asynchronously shuts Syntax Public Sub UnloadAddin() The shutdown is asynchronous. That is, it will not occur immediately when you make this call, but rather will start the shut-down process after your code has finished executing and control has returned to Excel. [[New ] (Visual Basic)] Public Sub ShutDownAtRisk Risk.UnloadAddIn Risk Object

13 WriteWorkbookInformation Method information to the specified Excel workbook. Syntax Public Sub WriteWorkbookInformation( _ ) ByVal p_workbook As Workbook _ Parameters p_workbook The workbook to information should be written. When the user saves an Excel workbook open, it automatically information into it. This information includes the simulation settings, fit definitions, and simulation results if appropriate. However, if you save a workbook via code using the Workbook.Save or Workbook.SaveAs methods, this information is not automatically written into the workbook and you must use this method to add it. Calling this method may display dialog, asking you for how you want to save your results. If you set the Risk.DisplayAlerts property to FALSE, this dialog will be suppressed and the default saving options will be chosen. If you only want to write simulation settings to a workbook, you can call instead the Risk.Simulation.Settings.SaveToWorkbook method. [[New ] (Visual Basic)] 'Saves the active Excel Workbook with the information embedded in it. Save dialog has been suppress during this process. Public Function SaveWorkbookWithAtRiskInformation() Risk.DisplayAlerts = False Risk.WriteWorkbookInformation ActiveWorkbook Risk.DisplayAlerts = True ActiveWorkbook.Save End Function Risk Object DisplayAlerts Property LoadFromWorkbook Method SaveToWorkbook Method

14 Addin Property Returns an Excel Workbook object for add-in (.xla) file. Read-only property Public Property Addin() As Workbook [[New ] (Visual Basic)] 'Displays the full path and filename of add-in file. Public Sub Dim addinwb As Workbook Set addinwb = Risk.Addin MsgBox addinwb.fullname Risk Object

15 ApplicationSettings Property Returns a RISKApplicationSettings object, which contains all the user application settings. Read-only property Public Property ApplicationSettings() As RiskApplicationSettings Risk Object RiskApplicationSettings Object

16 DisplayAlerts Property Controls will display messages during execution. Read-write property Public Property DisplayAlerts() As Boolean Macro developers may want to turn this message off to suppress the display messages. For example, a confirmation message displayed will pause the execution of a macro until the user clicks a button. This is very similar to the property of Excel with the same name. You should be sure to turn this property back to TRUE when your macro has finished. [[New ] (Visual Basic)] 'Perform a fit without displaying the fit status window Public Sub FitWithNoMessages() Dim fitresults As RiskFitResultCollection Dim fittedfunction As String Risk.DisplayAlerts = False Set fitresults = Risk.Fits(1).PerformFit fittedfunction = fitresults("normal").distributionfunction Risk.DisplayAlerts = True MsgBox fittedfunction Risk Object

17 ExcelApplication Property Returns the Excel Application object is working within. Read-only property Public Property ExcelApplication() As Application [[New ] (Visual Basic)] 'Displays the version of Excel is being used with Public Sub DisplayExcelVersion MsgBox Risk.ExcelApplication.Version Risk Object

18 Fits Property Returns a collection of fits currently defined in application. Read-only property Public Property Fits() As RiskFitDefinitionCollection Risk Object RiskFitDefinitionCollection Object

19 InterfaceMode Property Returns the current "interface" mode This property can be used to determine the state of operation of the product. Read-only property Public Property InterfaceMode() As RiskInterfaceMode actions can only be performed in a particular mode. For example, you can not perform a fit is the middle of running a simulation. You can use this property to check and respond appropriately to this type of situation. [[New ] (Visual Basic)] 'Check if we are in "Standard Mode" before doing something Public Sub DoSomethingOnlyIfInStandardMode() If Risk.InterfaceMode <> RiskStandardOperation Then MsgBox "This action can not be performed at this time." Exit Sub End If 'Proceed with the rest of the macro here... Risk Object

20 Library Property Returns a RiskLibraryServer Object which allows you to interact with Library. Read-only property Public Property Library() As RiskLibraryServer Risk Object RiskLibraryServer Object

21 ProductInformation Property Returns a RiskProductInformation Object which contains information about the current running copy Read-only property Public Property ProductInformation() As RiskProductInformation Risk Object RiskProductInformation Object

22 Simulation Property Returns a RiskSimulation object, from which you can change simulation settings, start simualation, and get the results of a simulation. Read-only property Public Property Simulation() As RiskSimulation Risk Object RiskSimulation Object

23 ApplicationSettingsChanged Event Raised when any settings in the RiskApplicationSettings object have been changed by the user. Syntax Public Event ApplicationSettingsChanged() Risk Object RiskApplicationSettings Object

24 UserInterfaceModeChanged Event Raised interface mode is changing. Syntax Public Event UserInterfaceModeChanged( _ ByVal oldmode As RiskInterfaceMode, _ ByVal newmode As RiskInterfaceMode _ ) Parameters oldmode Value RiskDisabledInterface RiskStandardOperation RiskDefiningDistributions RiskSimulating RiskBrowsingResults RiskApplicationInitializing RiskApplicationTerminating RiskFunctionsRemoved For internal use only. The normal operational mode The Define Distribution window is being displayed. A simulation is in progress. The Browse Results window is being displayed. application is in the processing of starting. application is in the processing of shutting is in "swapped out" mode, where functions have been removed. The old interface mode being switched out of. newmode Value RiskDisabledInterface RiskStandardOperation RiskDefiningDistributions RiskSimulating RiskBrowsingResults RiskApplicationInitializing RiskApplicationTerminating RiskFunctionsRemoved For internal use only. The normal operational mode The Define Distribution window is being displayed. A simulation is in progress. The Browse Results window is being displayed. application is in the processing of starting. application is in the processing of shutting is in "swapped out" mode, where functions have been removed. The new interface mode being switched into. Risk Object InterfaceMode Property

25

26 RiskApplicationSettings Object Contains a collection of properties that control general application settings. For a list of all members defined in this module, see RiskApplicationSettings members. These correspond to the program's Application Settings dialog. RiskApplicationSettings Members

27 RiskApplicationSettings Object Members Public Methods ApplyNow Applies current Application Settings to open windows, graphs, and workbooks. ResetToFactoryDefaults Resets Application Settings to their default state. Public Properties CellFormattingInputColor CellFormattingOutputColor CellFormattingStyle CumulativeDescendingPercentiles GraphBoxPlotCenterline Controls the (RGB) color to be used automatically formats cells input distributions. Controls the (RGB) color to be used automatically formats cells output functions. Controls will automatically format spreadsheet cells input or output functions. Sets will display percentiles in cumulative descending format. Controls the centerline statistic used for box-plots. GraphBoxPlotColor Controls the color used for box-plot graphs. GraphBoxPlotFormattingIsAutomatic Controls whether box-plots are formatted automatically. GraphBoxPlotInnerRange Controls the bounds of the box in a box-plot. GraphBoxPlotOuterRange Controls the bounds of the whiskers in a box-plot. GraphBoxPlotShowCenterlineLabels GraphInputColor GraphLeftDelimiter GraphLegendTableDefinition Controls whether the centerline value are displayed on a box-plot. Controls the default (RGB) color applied to the curves representing inputs in graph. Controls the default value for a distribution graph's left delimiter percentile. Controls what items appear by default on a graph's legend. GraphMarkerDefinition GraphNumberFormatQuantitiesWithUnits GraphNumberFormattingIsAutomatic GraphNumberFormatUnitlessQuantities GraphNumDelimitedCurves GraphNumHistogramBins Controls what items appear by default as marked items on a graph. Controls the number formatting used for graph statistics that have scaled units. Controls whether the number formatting used in graph statistics is automatically determined. Controls the number formatting used for unitless graph statistics. Controls the maximum number of curves in a graph that will display delimited percentile information. Specifies the number of histogram bins to be used in the display of graphs.

28 GraphOutputColor GraphOutputScalingFactor Controls the default (RGB) color applied to the curves representing outputs in graph. Specifies a default scaling factor for a output distribution graph. GraphOutputScalingIsAutomatic GraphOutputScalingMaximum GraphOutputScalingMinimum GraphPreferredDistributionFormat GraphPreferredTornadoFormat Indicates whether the default x-axis scaling of output distributions graphs is automatically determined. Specifies a default maximum value for a output distribution graph. Specifies a default minimum value for a output distribution graph. Controls the preferred distribution display format for distribution graphs. Controls the preferred display format for tornado graphs. GraphRightDelimiter GraphSummaryTrendCenterline Controls the default value for a distribution graph's left delimiter percentile. Controls the centerline statistic used for summery trend graphs. GraphSummaryTrendCenterlineColor Controsl the control of the centerline for summary trend graphs. GraphSummaryTrendFormattingIsAutomatic GraphSummaryTrendInnerColor Controls whether summary trend graphs are formatted automatically. Controls the color of a summary trend graph's inner band. GraphSummaryTrendInnerRange GraphSummaryTrendOuterColor Controls the bounds of the inner band of a summary trend graph. Controls the color of a summary trend graph's outer band. GraphSummaryTrendOuterRange GraphTitle GraphTitleMainText InsertStaticValues LibraryEnabled ModelWindowColumns PolicyFileInUse Controls the bounds of the outer band of a summary trend graph. Specifies a default graph description to use, overriding the automatic title generated Specifies a default graph title to use, overriding the automatic title generated Controls by default, will put RiskStatic() property functions into input distributions. Controls whether Library facility is enabled be default is started. Controls the columns that will be displayed by default in Model Window. Indicates whether user has a policy file installed. ReportOverwriteExisting ReportPlacement ReportReuseNewWorkbook Controls whether newly generated reports in a workbook will replace already existing reports in that same workbook. Controls Excel reports will be placed, either in a new workbook or the active workbook. Controls whether only a single new Excel workbook will be created to hold reports.

29 ResultWindowColumns SaveLocation Controls the columns that will be displayed by default in Results Window. Controls stores simulation results. ShowWelcomeScreenAtStartup SimSettingsAutomaticResultsDisplay SimSettingsCollectDistributionSamples SimSettingsConvergenceTestingEnabled SimSettingsLiveUpdate Controls whether "Welcome / What's New" windows is automatically displayed each time the application starts. Sets the default AutomaticResultsDisplay simulation settings for new models. Sets the default CollectDistributionSamples simulation settings for new models. Sets the default ConvergenceTestingEnabled simulation settings for new models. Sets the default LiveUpdate simulation settings for new models. SimSettingsMinimizeExcel SimSettingsNumIterations SimSettingsPauseOnOutputErrors SimSettingsSamplingType SimSettingsShowExcelRecalculations SimSettingsSmartSensitivityAnalysisEnabled Sets the default MinimizeExcel simulation settings for new models. Sets the default NumIterations simulation settings for new models. Sets the default PauseOnOutputErrors simulation settings for new models. Sets the default SamplingType simulation settings for new models. Sets the default ShowExcelRecalculations simulation settings for new models. Controls whether smart sensitivity analysis will is enabled. SimSettingsStdRecalcBehavior SimSettingsStdRecalcWithoutRiskStatic SimSettingsStdRecalcWithoutRiskStaticPercentile SwapPreviewChanges Sets the default StdRecalcBehavior simulation settings for new models. Sets the default StdRecalcWithoutRiskStatic simulation settings for new models. Sets the default StdRecalcWithoutRiskStaticPercentile simulation settings for new models. Controls what items are previewed when swapping in formulas. SwapWithoutRiskStatic SwapWithoutRiskStaticPercentile WindowDefaultSize Controls what statistic is substituted when the user swaps functions that do not contain RiskStatic() property functions. Controls what percentile is substituted when the user swaps functions that do not contain RiskStatic() property functions. Controls the default size of windows. WindowListDisplay Controls under what circumstances Windows List will be displayed. RiskApplicationSettings Overview

30

31 ApplyNow Method Applies current Application Settings to open windows, graphs, and workbooks. Syntax Public Sub ApplyNow() Many application settings only affect object (graphs, workbooks, windows, etc.) when they are first created. This property applies the settings to already existing open objects. [[New ] (Visual Basic)] 'Change how percentiles are displayed by default and apply the change to all open windows. Public Sub ChangePercentileDisplay() Risk.ApplicationSettings.CumulativeDescendingPercentiles = True Risk.ApplicationSettings.ApplyNow RiskApplicationSettings Object

32 ResetToFactoryDefaults Method Resets Application Settings to their default state. Syntax Public Sub ResetToFactoryDefaults() This will reset all of application settings to their internal "factory" defaults. If a policy file is in use, this call will override the settings stored in the policy file. RiskApplicationSettings Object PolicyFileInUse Property

33 CellFormattingInputColor Property Controls the (RGB) color to be used automatically formats cells input distributions. Read-write property Public Property CellFormattingInputColor() As Long This is an RGB color. You can use either build in VB color constants (e.g. vbred, vbblue, etc.) or the RGB function to specify these colors. This property will only have effect if the CellFormattingStyle property is not set to RiskCellFormattingNone. Changes to this setting will not take effect until you call the ApplyNow method. [[New ] (Visual Basic)] up to automatically color input cells green and output cells blue. Public Sub SetCellFormatting() With Risk.ApplicationSettings.CellFormattingStyle = RiskCellFormattingBackgroundColor.CellFormattingInputColor = vbgreen.cellformattingoutputcolor = vbblue.applynow End With RiskApplicationSettings Object CellFormattingStyle Property CellFormattingOutputColor Property ApplyNow Method

34 CellFormattingOutputColor Property Controls the (RGB) color to be used automatically formats cells output functions. Read-write property Public Property CellFormattingOutputColor() As Long This is an RGB color. You can use either build in VB color constants (e.g. vbred, vbblue, etc.) or the RGB function to specify these colors. This property will only have effect if the CellFormattingStyle property is not set to RiskCellFormattingNone. Changes to this setting will not take effect until you call the ApplyNow method. [[New ] (Visual Basic)] up to automatically color input cells green and output cells blue. Public Sub SetCellFormatting() With Risk.ApplicationSettings.CellFormattingStyle = RiskCellFormattingBackgroundColor.CellFormattingInputColor = vbgreen.cellformattingoutputcolor = vbblue.applynow End With RiskApplicationSettings Object CellFormattingStyle Property CellFormattingInputColor Property ApplyNow Method

35 CellFormattingStyle Property Controls will automatically format spreadsheet cells input or output functions. Read-write property Public Property CellFormattingStyle() As RiskCellFormattingStyle The CellFormattingInputColor and CellFormattingOutputColor control the colors used in the cell formatting. Changes to this setting will not take effect until you call the ApplyNow method. [[New ] (Visual Basic)] up to automatically color input cells green and output cells blue. Public Sub SetCellFormatting() With Risk.ApplicationSettings.CellFormattingStyle = RiskCellFormattingBackgroundColor.CellFormattingInputColor = vbgreen.cellformattingoutputcolor = vbblue.applynow End With RiskApplicationSettings Object CellFormattingInputColor Property CellFormattingOutputColor Property ApplyNow Method RiskCellFormattingStyle Enumeration

36 CumulativeDescendingPercentiles Property Sets will display percentiles in cumulative descending format. Read-write property Public Property CumulativeDescendingPercentiles() As Boolean This property only affects the display of percentiles in interface. All methods and properties will continue to return cumulative ascending percentiles. This settings will affect all new windows created After changing this setting, you can apply it to already open windows using the ApplyNow method. [[New ] (Visual Basic)] 'Change how percentiles are displayed by default and apply the change to all open windows. Public Sub ChangePercentileDisplay() Risk.ApplicationSettings.CumulativeDescendingPercentiles = True Risk.ApplicationSettings.ApplyNow RiskApplicationSettings Object ApplyNow Method

37 GraphBoxPlotCenterline Property Controls the centerline statistic used for box-plots. Read-write property Public Property GraphBoxPlotCenterline() As RiskSummaryGraphCenterlineStatistic This property only has effect if the GraphBoxPlotFormattingIsAutomatic Property is False. This property applies to new graphs when they are first created. To apply this property to existing graphs call the ApplyNow method. [Visual Basic] 'Change Default Box Plot Options: Public Sub ChangeDefaultBoxPlotOptions() With Risk.ApplicationSettings.GraphBoxPlotFormattingIsAutomatic = False.GraphBoxPlotCenterline = RiskSummaryGraphCenterlineStatisticMedian.GraphBoxPlotInnerRange = RiskSummaryGraphRangeP25P75.GraphBoxPlotOuterRange = RiskSummaryGraphRangeP10P90.GraphBoxPlotShowCenterlineLabels = True.GraphBoxPlotColor = vbgreen End With RiskApplicationSettings Object GraphBoxPlotColor Property GraphBoxPlotFormattingIsAutomatic Property GraphBoxPlotInnerRange Property GraphBoxPlotOuterRange Property GraphBoxPlotShowCenterlineLabels Property

38 GraphBoxPlotColor Property Controls the color used for box-plot graphs. Read-write property Public Property GraphBoxPlotColor() As Long This is an RGB color. You can use either build in VB color constants (e.g. vbred, vbblue, etc.) or the RGB function to specify these colors. This property only has effect if the GraphBoxPlotFormattingIsAutomatic Property is False. This property applies to new graphs when they are first created. To apply this property to existing graphs call the ApplyNow method. [Visual Basic] 'Change Default Box Plot Options: Public Sub ChangeDefaultBoxPlotOptions() With Risk.ApplicationSettings.GraphBoxPlotFormattingIsAutomatic = False.GraphBoxPlotCenterline = RiskSummaryGraphCenterlineStatisticMedian.GraphBoxPlotInnerRange = RiskSummaryGraphRangeP25P75.GraphBoxPlotOuterRange = RiskSummaryGraphRangeP10P90.GraphBoxPlotShowCenterlineLabels = True.GraphBoxPlotColor = vbgreen End With RiskApplicationSettings Object GraphBoxPlotCenterline Property GraphBoxPlotFormattingIsAutomatic Property GraphBoxPlotInnerRange Property GraphBoxPlotOuterRange Property GraphBoxPlotShowCenterlineLabels Property

39 GraphBoxPlotFormattingIsAutomatic Property Controls whether box-plots are formatted automatically. Read-write property Public Property GraphBoxPlotFormattingIsAutomatic() As Boolean If this property is FALSE, the other GraphBoxPlot properties are use to determine the formatting of new box-plots. This property applies to new graphs when they are first created. To apply this property to existing graphs call the ApplyNow method. [Visual Basic] 'Change Default Box Plot Options: Public Sub ChangeDefaultBoxPlotOptions() With Risk.ApplicationSettings.GraphBoxPlotFormattingIsAutomatic = False.GraphBoxPlotCenterline = RiskSummaryGraphCenterlineStatisticMedian.GraphBoxPlotInnerRange = RiskSummaryGraphRangeP25P75.GraphBoxPlotOuterRange = RiskSummaryGraphRangeP10P90.GraphBoxPlotShowCenterlineLabels = True.GraphBoxPlotColor = vbgreen End With RiskApplicationSettings Object GraphBoxPlotCenterline Property GraphBoxPlotColor Property GraphBoxPlotInnerRange Property GraphBoxPlotOuterRange Property GraphBoxPlotShowCenterlineLabels Property

40 GraphBoxPlotInnerRange Property Controls the bounds of the box in a box-plot. Read-write property Public Property GraphBoxPlotInnerRange() As RiskSummaryGraphRange This property only has effect if the GraphBoxPlotFormattingIsAutomatic Property is False. This property applies to new graphs when they are first created. To apply this property to existing graphs call the ApplyNow method. [Visual Basic] 'Change Default Box Plot Options: Public Sub ChangeDefaultBoxPlotOptions() With Risk.ApplicationSettings.GraphBoxPlotFormattingIsAutomatic = False.GraphBoxPlotCenterline = RiskSummaryGraphCenterlineStatisticMedian.GraphBoxPlotInnerRange = RiskSummaryGraphRangeP25P75.GraphBoxPlotOuterRange = RiskSummaryGraphRangeP10P90.GraphBoxPlotShowCenterlineLabels = True.GraphBoxPlotColor = vbgreen End With RiskApplicationSettings Object GraphBoxPlotCenterline Property GraphBoxPlotColor Property GraphBoxPlotFormattingIsAutomatic Property GraphBoxPlotOuterRange Property GraphBoxPlotOuterRange Property

41 GraphBoxPlotOuterRange Property Controls the bounds of the whiskers in a box-plot. Read-write property Public Property GraphBoxPlotOuterRange() As RiskSummaryGraphRange This property only has effect if the GraphBoxPlotFormattingIsAutomatic Property is False. This property applies to new graphs when they are first created. To apply this property to existing graphs call the ApplyNow method. [Visual Basic] 'Change Default Box Plot Options: Public Sub ChangeDefaultBoxPlotOptions() With Risk.ApplicationSettings.GraphBoxPlotFormattingIsAutomatic = False.GraphBoxPlotCenterline = RiskSummaryGraphCenterlineStatisticMedian.GraphBoxPlotInnerRange = RiskSummaryGraphRangeP25P75.GraphBoxPlotOuterRange = RiskSummaryGraphRangeP10P90.GraphBoxPlotShowCenterlineLabels = True.GraphBoxPlotColor = vbgreen End With RiskApplicationSettings Object GraphBoxPlotCenterline Property GraphBoxPlotColor Property GraphBoxPlotFormattingIsAutomatic Property GraphBoxPlotInnerRange Property GraphBoxPlotShowCenterlineLabels Property

42 GraphBoxPlotShowCenterlineLabels Property Controls whether the centerline value are displayed on a box-plot. Read-write property Public Property GraphBoxPlotShowCenterlineLabels() As Boolean This property only has effect if the GraphBoxPlotFormattingIsAutomatic Property is False. This property applies to new graphs when they are first created. To apply this property to existing graphs call the ApplyNow method. [Visual Basic] 'Change Default Box Plot Options: Public Sub ChangeDefaultBoxPlotOptions() With Risk.ApplicationSettings.GraphBoxPlotFormattingIsAutomatic = False.GraphBoxPlotCenterline = RiskSummaryGraphCenterlineStatisticMedian.GraphBoxPlotInnerRange = RiskSummaryGraphRangeP25P75.GraphBoxPlotOuterRange = RiskSummaryGraphRangeP10P90.GraphBoxPlotShowCenterlineLabels = True.GraphBoxPlotColor = vbgreen End With RiskApplicationSettings Object GraphBoxPlotCenterline Property GraphBoxPlotColor Property GraphBoxPlotFormattingIsAutomatic Property GraphBoxPlotInnerRange Property GraphBoxPlotOuterRange Property

43 GraphInputColor Property Controls the default (RGB) color applied to the curves representing inputs in graph. Read-write property Public Property GraphInputColor() As Long This property does not apply to graph types. This is an RGB color. You can use either build in VB color constants (e.g. vbred, vbblue, etc.) or the RGB function to specify these colors. Changes to this setting will affect new graphs created in interface. Calling the ApplyNow method will apply this color to all graph windows. [[New ] (Visual Basic)] to automatically make graphs on outputs green and graphs of inputs yellow Public Sub SetGraphColors() With Risk.ApplicationSettings.GraphOutputColor = vbgreen.graphinputcolor = vbyellow End With RiskApplicationSettings Object GraphOutputColor Property ApplyNow Method

44 GraphLeftDelimiter Property Controls the default value for a distribution graph's left delimiter percentile. Read-write property Public Property GraphLeftDelimiter() As Double This property only applies to distribution graphs. This is a percentile value which must be between 0 and 1. Changes to this setting will affect new graphs created in interface. Calling the ApplyNow method will apply the change to all graph windows. [[New ] (Visual Basic)] 'Set the default graph delimiter to be at 2.5% and 97.5% and show delimited values for up to 3 curves. Public Sub SetGraphDelimiterDefaults() With Risk.ApplicationSettings.GraphLeftDelimiter = GraphRightDelimiter = GraphNumDelimitedCurves = 3 End With RiskApplicationSettings Object GraphRightDelimiter Property GraphNumDelimitedCurves Property ApplyNow Method

45 GraphLegendTableDefinition Property Controls what items appear by default on a graph's legend. Read-write property Public Property GraphLegendTableDefinition() As String This property does not apply to graph types. This property applies to new graphs when they are first created. To apply this property to existing graphs call the ApplyNow method. Set this property to the string "{Default}" to use the default settings of the application. The detailed format of this string has not yet been made public for automation control. RiskApplicationSettings Object GraphMarkerDefinition Property ApplyNow Method

46 GraphMarkerDefinition Property Controls what items appear by default as marked items on a graph. Read-write property Public Property GraphMarkerDefinition() As String This property does not apply to graph types. This property applies to new graphs when they are first created. To apply this property to existing graphs call the ApplyNow method. Set this property to the string "{Default}" to use the default settings of the application. The detailed format of this string has not yet been made public for automation control. RiskApplicationSettings Object GraphLegendTableDefinition Property ApplyNow Method

47 GraphNumberFormatQuantitiesWithUnits Property Controls the number formatting used for graph statistics that have scaled units. Read-write property Public Property GraphNumberFormatQuantitiesWithUnits() As String This property does not apply to graph types. This property only has effect when the GraphNumberFormattingIsAutomatic property is False. This property applies to new graphs when they are first created. To apply this property to existing graphs call the ApplyNow method. This property is applied to statistics with units (such as mean, standard deviation, etc.) Use the GraphNumberFormatUnitlessQuantities property to specify the number formatting used for statistics that do not have units (such as skewness, kurtosis, etc.) This format of this property string may be set to: A blank string - indicating the "General" number format. A two character string in the format "C#" where # is a number between 0 and 9. This is a currency format with the specified number of digits trailing the decimal. A two character string in the format "F#" where # is a number between 0 and 9. This is a fixed format with the specified number of digits trailing the decimal. RiskApplicationSettings Object GraphNumberFormattingIsAutomatic Property GraphNumberFormatUnitlessQuantities Property ApplyNow Method

48 GraphNumberFormattingIsAutomatic Property Controls whether the number formatting used in graph statistics is automatically determined. Read-write property Public Property GraphNumberFormattingIsAutomatic() As Boolean This property does not apply to graph types. This property applies to new graphs when they are first created. To apply this property to existing graphs call the ApplyNow method. When this property is False, the GraphNumberFomatQuantitiesWithUnits and GraphNumberFormatUnitlessQuantities property specify the number formatting to use. RiskApplicationSettings Object GraphNumberFormatQuantitiesWithUnits Property GraphNumberFormatUnitlessQuantities Property ApplyNow Method

49 GraphNumberFormatUnitlessQuantities Property Controls the number formatting used for unitless graph statistics. Read-write property Public Property GraphNumberFormatUnitlessQuantities() As String This property does not apply to graph types. This property only has effect when the GraphNumberFormattingIsAutomatic property is False. This property applies to new graphs when they are first created. To apply this property to existing graphs call the ApplyNow method. This property is applied to 'unitless' statistics (such as skewness, kurtosis, etc.) Use the GraphNumberFormatQuantitiesWithUnits property to specify the number formatting used for statistics with units. This format of this property string may be set to: A blank string - indicating the "General" number format. A two character string in the format "F#" where # is a number between 0 and 9. This is a fixed format with the specified number of digits trailing the decimal. RiskApplicationSettings Object GraphNumberFormattingIsAutomatic Property GraphNumberFormatQuantitiesWithUnits Property ApplyNow Method

50 GraphNumDelimitedCurves Property Controls the maximum number of curves in a graph that will display delimited percentile information. Read-write property Public Property GraphNumDelimitedCurves() As Integer This property only applies to distribution graphs. Changes to this setting will affect new graphs created in interface. Calling the ApplyNow method will apply the change to all graph windows. [[New ] (Visual Basic)] 'Set the default graph delimiter to be at 2.5% and 97.5% and show delimited values for up to 3 curves. Public Sub SetGraphDelimiterDefaults() With Risk.ApplicationSettings.GraphLeftDelimiter = GraphRightDelimiter = GraphNumDelimitedCurves = 3 End With RiskApplicationSettings Object GraphLeftDelimiter Property GraphRightDelimiter Property ApplyNow Method

51 GraphNumHistogramBins Property Specifies the number of histogram bins to be used in the display of graphs. Read-write property Public Property GraphNumHistogramBins() As Integer This property does not apply to graph types. The special value RiskAutoNumHistogramBins can be used to automatically determine this value for you. Changes to this setting will affect new graphs created in interface. Calling the ApplyNow method will apply the change to all graph windows. RiskApplicationSettings Object RiskAutoNumHistogramBins Property ApplyNow Method

52 GraphOutputColor Property Controls the default (RGB) color applied to the curves representing outputs in graph. Read-write property Public Property GraphOutputColor() As Long This property does not apply to graph types. This is an RGB color. You can use either build in VB color constants (e.g. vbred, vbblue, etc.) or the RGB function to specify these colors. Changes to this setting will affect new graphs created in interface. Calling the ApplyNow method will apply this color to all graph windows. [[New ] (Visual Basic)] to automatically make graphs on outputs green and graphs of inputs yellow Public Sub SetGraphColors() With Risk.ApplicationSettings.GraphOutputColor = vbgreen.graphinputcolor = vbyellow End With RiskApplicationSettings Object GraphInputColor Property ApplyNow Method

53 GraphOutputScalingFactor Property Specifies a default scaling factor for a output distribution graph. Read-write property Public Property GraphOutputScalingFactor() As RiskScalingFactor This property on applies to distribution graphs of outputs. This property on has effect if the GraphOutputScalingIsAutomatic property is False. This property applies to new graphs when they are first created. To apply this property to existing graphs call the ApplyNow method. [[New ] (Visual Basic)] 'Change Default Graph Scaling Public Sub ChangeDefaultGraphScaling() With Risk.ApplicationSettings.GraphOutputScalingIsAutomatic = False.GraphOutputScalingMinimum = 1000.GraphOutputScalingMaximum = 5000.GraphOutputScalingFactor = RiskScaleByThousands End With RiskApplicationSettings Object GraphOutputScalingIsAutomatic Property GraphOutputScalingMinimum Property GraphOutputScalingMaximum Property ApplyNow Method

54 GraphOutputScalingIsAutomatic Property Indicates whether the default x-axis scaling of output distributions graphs is automatically determined. Read-write property Public Property GraphOutputScalingIsAutomatic() As Boolean This property on applies to distribution graphs of outputs. If this property is set to False, the GraphOutputScalingMinimum, GraphOutputScalingMaximum, and GraphOutputScalingFactor properties will control the default scaling applies to new distribution graphs. This property applies to new graphs when they are first created. To apply this property to existing graphs call the ApplyNow method. [[New ] (Visual Basic)] 'Change Default Graph Scaling Public Sub ChangeDefaultGraphScaling() With Risk.ApplicationSettings.GraphOutputScalingIsAutomatic = False.GraphOutputScalingMinimum = 1000.GraphOutputScalingMaximum = 5000.GraphOutputScalingFactor = RiskScaleByThousands End With RiskApplicationSettings Object GraphOutputScalingIsAutomatic Property GraphOutputScalingMinimum Property GraphOutputScalingMaximum Property ApplyNow Method

55 GraphOutputScalingMaximum Property Specifies a default maximum value for a output distribution graph. Read-write property Public Property GraphOutputScalingMaximum() As Double This property on applies to distribution graphs of outputs. This property on has effect if the GraphOutputScalingIsAutomatic property is False. The value specified in this property is NOT scaled by the value in the GraphOutputScalingFactor property. This property applies to new graphs when they are first created. To apply this property to existing graphs call the ApplyNow method. [[New ] (Visual Basic)] 'Change Default Graph Scaling Public Sub ChangeDefaultGraphScaling() With Risk.ApplicationSettings.GraphOutputScalingIsAutomatic = False.GraphOutputScalingMinimum = 1000.GraphOutputScalingMaximum = 5000.GraphOutputScalingFactor = RiskScaleByThousands End With RiskApplicationSettings Object GraphOutputScalingIsAutomatic Property GraphOutputScalingMinimum Property GraphOutputScalingFactor Property ApplyNow Method

56 GraphOutputScalingMinimum Property Specifies a default minimum value for a output distribution graph. Read-write property Public Property GraphOutputScalingMinimum() As Double This property on applies to distribution graphs of outputs. This property on has effect if the GraphOutputScalingIsAutomatic property is False. The value specified in this property is NOT scaled by the value in the GraphOutputScalingFactor property. This property applies to new graphs when they are first created. To apply this property to existing graphs call the ApplyNow method. [[New ] (Visual Basic)] 'Change Default Graph Scaling Public Sub ChangeDefaultGraphScaling() With Risk.ApplicationSettings.GraphOutputScalingIsAutomatic = False.GraphOutputScalingMinimum = 1000.GraphOutputScalingMaximum = 5000.GraphOutputScalingFactor = RiskScaleByThousands End With RiskApplicationSettings Object GraphOutputScalingIsAutomatic Property GraphOutputScalingMaximum Property GraphOutputScalingFactor Property ApplyNow Method

57 GraphPreferredDistributionFormat Property Controls the preferred distribution display format for distribution graphs. Read-write property Public Property GraphPreferredDistributionFormat() As RiskDistributionDisplayFormat This graph only applies to distribution graphs. This property applies to new graphs when they are first created. To apply this property to existing graphs call the ApplyNow method. RiskApplicationSettings Object GraphPreferredTornadoFormat Property ApplyNow Method RiskDistributionDisplayFormat Enumeration

58 GraphPreferredTornadoFormat Property Controls the preferred display format for tornado graphs. Read-write property Public Property GraphPreferredTornadoFormat() As RiskTornadoDisplayFormat This property only applies to tornado graphs. This property applies to new graphs when they are first created. To apply this property to existing graphs call the ApplyNow method. RiskApplicationSettings Object GraphPreferredDistributionFormat Property RiskTornadoDisplayFormat Enumeration

DATA 301 Introduction to Data Analytics Microsoft Excel VBA. Dr. Ramon Lawrence University of British Columbia Okanagan

DATA 301 Introduction to Data Analytics Microsoft Excel VBA. Dr. Ramon Lawrence University of British Columbia Okanagan DATA 301 Introduction to Data Analytics Microsoft Excel VBA Dr. Ramon Lawrence University of British Columbia Okanagan ramon.lawrence@ubc.ca DATA 301: Data Analytics (2) Why Microsoft Excel Visual Basic

More information

Introduction to CS databases and statistics in Excel Jacek Wiślicki, Laurent Babout,

Introduction to CS databases and statistics in Excel Jacek Wiślicki, Laurent Babout, One of the applications of MS Excel is data processing and statistical analysis. The following exercises will demonstrate some of these functions. The base files for the exercises is included in http://lbabout.iis.p.lodz.pl/teaching_and_student_projects_files/files/us/lab_04b.zip.

More information

IFA/QFN VBA Tutorial Notes prepared by Keith Wong

IFA/QFN VBA Tutorial Notes prepared by Keith Wong IFA/QFN VBA Tutorial Notes prepared by Keith Wong Chapter 5: Excel Object Model 5-1: Object Browser The Excel Object Model contains thousands of pre-defined classes and constants. You can view them through

More information

Microsoft Office Excel Create a worksheet group. A worksheet group. Tutorial 6 Working With Multiple Worksheets and Workbooks

Microsoft Office Excel Create a worksheet group. A worksheet group. Tutorial 6 Working With Multiple Worksheets and Workbooks Microsoft Office Excel 2003 Tutorial 6 Working With Multiple Worksheets and Workbooks 1 Create a worksheet group A workbook is a collection of worksheets. You may want to work with the worksheets within

More information

Customizing the Excel 2013 program window. Getting started with Excel 2013

Customizing the Excel 2013 program window. Getting started with Excel 2013 Customizing the Excel 2013 program window 1 2 Getting started with Excel 2013 Working with data and Excel tables Creating workbooks Modifying workbooks Modifying worksheets Merging and unmerging cells

More information

BASIC EXCEL SYLLABUS Section 1: Getting Started Section 2: Working with Worksheet Section 3: Administration Section 4: Data Handling & Manipulation

BASIC EXCEL SYLLABUS Section 1: Getting Started Section 2: Working with Worksheet Section 3: Administration Section 4: Data Handling & Manipulation BASIC EXCEL SYLLABUS Section 1: Getting Started Unit 1.1 - Excel Introduction Unit 1.2 - The Excel Interface Unit 1.3 - Basic Navigation and Entering Data Unit 1.4 - Shortcut Keys Section 2: Working with

More information

3. Data Analysis and Statistics

3. Data Analysis and Statistics 3. Data Analysis and Statistics 3.1 Visual Analysis of Data 3.2.1 Basic Statistics Examples 3.2.2 Basic Statistical Theory 3.3 Normal Distributions 3.4 Bivariate Data 3.1 Visual Analysis of Data Visual

More information

Getting started 7. Writing macros 23

Getting started 7. Writing macros 23 Contents 1 2 3 Getting started 7 Introducing Excel VBA 8 Recording a macro 10 Viewing macro code 12 Testing a macro 14 Editing macro code 15 Referencing relatives 16 Saving macros 18 Trusting macros 20

More information

SAS (Statistical Analysis Software/System)

SAS (Statistical Analysis Software/System) SAS (Statistical Analysis Software/System) SAS Analytics:- Class Room: Training Fee & Duration : 23K & 3 Months Online: Training Fee & Duration : 25K & 3 Months Learning SAS: Getting Started with SAS Basic

More information

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 Quick Summary A workbook an Excel document that stores data contains one or more pages called a worksheet. A worksheet or spreadsheet is stored in a workbook, and

More information

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

More information

Workbooks (File) and Worksheet Handling

Workbooks (File) and Worksheet Handling Workbooks (File) and Worksheet Handling Excel Limitation Excel shortcut use and benefits Excel setting and custom list creation Excel Template and File location system Advanced Paste Special Calculation

More information

Data Should Not be a Four Letter Word Microsoft Excel QUICK TOUR

Data Should Not be a Four Letter Word Microsoft Excel QUICK TOUR Toolbar Tour AutoSum + more functions Chart Wizard Currency, Percent, Comma Style Increase-Decrease Decimal Name Box Chart Wizard QUICK TOUR Name Box AutoSum Numeric Style Chart Wizard Formula Bar Active

More information

A Brief Word About Your Exam

A Brief Word About Your Exam Exam 1 Studyguide A Brief Word About Your Exam Your exam will be MONDAY, FEBRUARY 20 DURING CLASS TIME. You will have 50 minutes to complete Exam 1. If you arrive late or leave early, you forfeit any time

More information

Outline. Midterm Review. Using Excel. Midterm Review: Excel Basics. Using VBA. Sample Exam Question. Midterm Review April 4, 2014

Outline. Midterm Review. Using Excel. Midterm Review: Excel Basics. Using VBA. Sample Exam Question. Midterm Review April 4, 2014 Midterm Review Larry Caretto Mechanical Engineering 209 Computer Programming for Mechanical Engineers April 4, 2017 Outline Excel spreadsheet basics Use of VBA functions and subs Declaring/using variables

More information

GO! with Microsoft Excel 2016 Comprehensive

GO! with Microsoft Excel 2016 Comprehensive GO! with Microsoft Excel 2016 Comprehensive First Edition Chapter 2 Using Functions, Creating Tables, and Managing Large Workbooks Use SUM and Statistical Functions The SUM function is a predefined formula

More information

Product Documentation SAP Business ByDesign August Analytics

Product Documentation SAP Business ByDesign August Analytics Product Documentation PUBLIC Analytics Table Of Contents 1 Analytics.... 5 2 Business Background... 6 2.1 Overview of Analytics... 6 2.2 Overview of Reports in SAP Business ByDesign... 12 2.3 Reports

More information

Data Analysis and Solver Plugins for KSpread USER S MANUAL. Tomasz Maliszewski

Data Analysis and Solver Plugins for KSpread USER S MANUAL. Tomasz Maliszewski Data Analysis and Solver Plugins for KSpread USER S MANUAL Tomasz Maliszewski tmaliszewski@wp.pl Table of Content CHAPTER 1: INTRODUCTION... 3 1.1. ABOUT DATA ANALYSIS PLUGIN... 3 1.3. ABOUT SOLVER PLUGIN...

More information

KEYWORDS DDE GETOBJECT PATHNAME CLASS VB EDITOR WITHEVENTS HMI 1.0 TYPE LIBRARY HMI.TAG

KEYWORDS DDE GETOBJECT PATHNAME CLASS VB EDITOR WITHEVENTS HMI 1.0 TYPE LIBRARY HMI.TAG Document Number: IX_APP00113 File Name: SpreadsheetLinking.doc Date: January 22, 2003 Product: InteractX Designer Application Note Associated Project: GetObjectDemo KEYWORDS DDE GETOBJECT PATHNAME CLASS

More information

Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West

Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West Chapter 10 Managing Numbers and Text Using Excel 1 Objectives Examine the Excel window and tools Enter and format

More information

MODULE VI: MORE FUNCTIONS

MODULE VI: MORE FUNCTIONS MODULE VI: MORE FUNCTIONS Copyright 2012, National Seminars Training More Functions Using the VLOOKUP and HLOOKUP Functions Lookup functions look up values in a table and return a result based on those

More information

Computer Applications Data Processing FA 14

Computer Applications Data Processing FA 14 Lesson 7: Combining Multiple Data Sources Microsoft Excel 2016 IN THIS CHAPTER, YOU WILL LEARN HOW TO: Use workbooks as templates for other workbooks. Link to data in other worksheets and workbooks. Consolidate

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

Microsoft Excel 2010 Training. Excel 2010 Basics

Microsoft Excel 2010 Training. Excel 2010 Basics Microsoft Excel 2010 Training Excel 2010 Basics Overview Excel is a spreadsheet, a grid made from columns and rows. It is a software program that can make number manipulation easy and somewhat painless.

More information

How to use FSBforecast Excel add in for regression analysis

How to use FSBforecast Excel add in for regression analysis How to use FSBforecast Excel add in for regression analysis FSBforecast is an Excel add in for data analysis and regression that was developed here at the Fuqua School of Business over the last 3 years

More information

Installing SensIt, RiskSim, and TreePlan 3.1 INSTALLATION OVERVIEW 3.2 REMOVING PREVIOUS VERSIONS 3.3 THE ADD-IN XLA FILE

Installing SensIt, RiskSim, and TreePlan 3.1 INSTALLATION OVERVIEW 3.2 REMOVING PREVIOUS VERSIONS 3.3 THE ADD-IN XLA FILE Installing SensIt, 3 RiskSim, and TreePlan 3.1 INSTALLATION OVERVIEW SensIt, RiskSim, and TreePlan are decision analysis add-ins for Microsoft Excel 2000 2010 (Windows) and Microsoft Excel 2004 & 2011

More information

Sébastien Mathier wwwexcel-pratiquecom/en Variables : Variables make it possible to store all sorts of information Here's the first example : 'Display the value of the variable in a dialog box 'Declaring

More information

GO! with Microsoft Access 2016 Comprehensive

GO! with Microsoft Access 2016 Comprehensive GO! with Microsoft Access 2016 Comprehensive First Edition Chapter 1 Getting Started with Microsoft Access 2016 Learning Objectives Identify Good Database Design Create a Table and Define Fields in a Blank

More information

Math 227 EXCEL / MEGASTAT Guide

Math 227 EXCEL / MEGASTAT Guide Math 227 EXCEL / MEGASTAT Guide Introduction Introduction: Ch2: Frequency Distributions and Graphs Construct Frequency Distributions and various types of graphs: Histograms, Polygons, Pie Charts, Stem-and-Leaf

More information

Candy is Dandy Project (Project #12)

Candy is Dandy Project (Project #12) Candy is Dandy Project (Project #12) You have been hired to conduct some market research about M&M's. First, you had your team purchase 4 large bags and the results are given for the contents of those

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 omar 2013-2014 First Semester 1. Exploring and Setting Up Your Excel Environment Microsoft Excel 2010 2013-2014 The Ribbon contains multiple tabs, each with several groups of commands.

More information

BASIC MACROINSTRUCTIONS (MACROS)

BASIC MACROINSTRUCTIONS (MACROS) MS office offers a functionality of building complex actions and quasi-programs by means of a special scripting language called VBA (Visual Basic for Applications). In this lab, you will learn how to use

More information

Installation 3. PerTrac Reporting Studio Overview 4. The Report Design Window Overview 8. Designing the Report (an example) 13

Installation 3. PerTrac Reporting Studio Overview 4. The Report Design Window Overview 8. Designing the Report (an example) 13 Contents Installation 3 PerTrac Reporting Studio Overview 4 The Report Design Window Overview 8 Designing the Report (an example) 13 PerTrac Reporting Studio Charts 14 Chart Editing/Formatting 17 PerTrac

More information

Here is Kellogg s custom menu for their core statistics class, which can be loaded by typing the do statement shown in the command window at the very

Here is Kellogg s custom menu for their core statistics class, which can be loaded by typing the do statement shown in the command window at the very Here is Kellogg s custom menu for their core statistics class, which can be loaded by typing the do statement shown in the command window at the very bottom of the screen: 4 The univariate statistics command

More information

Group Administrator. ebills csv file formatting by class level. User Guide

Group Administrator. ebills csv file formatting by class level. User Guide Group Administrator ebills csv file formatting by class level User Guide Version 1.0 February 10, 2015 Table of Content Excel automated template... 3 Enable Macro setting in Microsoft Excel... 3 Extracting

More information

Microsoft Certified Application Specialist Exam Objectives Map

Microsoft Certified Application Specialist Exam Objectives Map Microsoft Certified Application Specialist Exam s Map This document lists all Microsoft Certified Application Specialist exam objectives for (Exam 77-602) and provides references to corresponding coverage

More information

UNIT 4. Research Methods in Business

UNIT 4. Research Methods in Business UNIT 4 Preparing Data for Analysis:- After data are obtained through questionnaires, interviews, observation or through secondary sources, they need to be edited. The blank responses, if any have to be

More information

Microsoft Office Illustrated. Getting Started with Excel 2007

Microsoft Office Illustrated. Getting Started with Excel 2007 Microsoft Office 2007- Illustrated Getting Started with Excel 2007 Objectives Understand spreadsheet software Tour the Excel 2007 window Understand formulas Enter labels and values and use AutoSum Objectives

More information

Index. C calculated fields, vs. calculated items, 56 correcting results in, 67 creating, 61 count of unique items, 66

Index. C calculated fields, vs. calculated items, 56 correcting results in, 67 creating, 61 count of unique items, 66 Index symbols % Difference From custom calculation, 49, 65 % of Column custom calculation, 53 % Of custom calculation, 48 % of Row custom calculation, 52 % of Total custom calculation, 54 < less than symbol,

More information

Excel Macro Runtime Error Code 1004 Saveas Of Object _workbook Failed

Excel Macro Runtime Error Code 1004 Saveas Of Object _workbook Failed Excel Macro Runtime Error Code 1004 Saveas Of Object _workbook Failed The code that follows has been courtesy of this forum and the extensive help i received from everyone. But after an Runtime Error '1004'

More information

Contents. Some Basics Simple VBA Procedure (Macro) To Execute The Procedure Recording A Macro About Macro Recorder VBA Objects Reference

Contents. Some Basics Simple VBA Procedure (Macro) To Execute The Procedure Recording A Macro About Macro Recorder VBA Objects Reference Introduction To VBA Contents Some Basics Simple VBA Procedure (Macro) To Execute The Procedure Recording A Macro About Macro Recorder VBA Objects Reference Some Basics Code: You perform actions in VBA

More information

EXAM Microsoft Excel 2013 Expert Part 1. Buy Full Product.

EXAM Microsoft Excel 2013 Expert Part 1. Buy Full Product. Microsoft EXAM - 77-427 Microsoft Excel 2013 Expert Part 1 Buy Full Product http://www.examskey.com/77-427.html Examskey Microsoft 77-427 exam demo product is here for you to test the quality of the product.

More information

VBA Collections A Group of Similar Objects that Share Common Properties, Methods and

VBA Collections A Group of Similar Objects that Share Common Properties, Methods and VBA AND MACROS VBA is a major division of the stand-alone Visual Basic programming language. It is integrated into Microsoft Office applications. It is the macro language of Microsoft Office Suite. Previously

More information

User Services Spring 2008 OBJECTIVES Introduction Getting Help Instructors

User Services Spring 2008 OBJECTIVES  Introduction Getting Help  Instructors User Services Spring 2008 OBJECTIVES Use the Data Editor of SPSS 15.0 to to import data. Recode existing variables and compute new variables Use SPSS utilities and options Conduct basic statistical tests.

More information

2. create the workbook file

2. create the workbook file 2. create the workbook file Excel documents are called workbook files. A workbook can include multiple sheets of information. Excel supports two kinds of sheets for working with data: Worksheets, which

More information

Advanced Programming Features

Advanced Programming Features Advanced Programming Features Compute Tools 4 and 5 Program Area Level 5 The two advance programming templates for manipulating data are Compute Tools 4 and Compute Tools 5. Each of these templates provide

More information

Microsoft Excel 2007 Macros and VBA

Microsoft Excel 2007 Macros and VBA Microsoft Excel 2007 Macros and VBA With the introduction of Excel 2007 Microsoft made a number of changes to the way macros and VBA are approached. This document outlines these special features of Excel

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

Monte Carlo Integration

Monte Carlo Integration Monte Carlo Integration The Monte Carlo method can be used to integrate a function that is difficult or impossible to evaluate by direct methods. Often the process of "integration" is the determination

More information

EXAM Microsoft Excel 2010 Expert. Buy Full Product.

EXAM Microsoft Excel 2010 Expert. Buy Full Product. Microsoft EXAM - 77-888 Microsoft Excel 2010 Expert Buy Full Product http://www.examskey.com/77-888.html Examskey Microsoft 77-888 exam demo product is here for you to test the quality of the product.

More information

Excel 2013 Charts and Graphs

Excel 2013 Charts and Graphs Excel 2013 Charts and Graphs Copyright 2016 Faculty and Staff Training, West Chester University. A member of the Pennsylvania State System of Higher Education. No portion of this document may be reproduced

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

Appendix A1 Visual Basics for Applications (VBA)

Appendix A1 Visual Basics for Applications (VBA) Credit Risk Modeling Using Excel and VBA with DVD By Gunter Löffler and Peter N. Posch 2011 John Wiley & Sons, Ltd. Appendix A1 Visual Basics for Applications (VBA) MACROS AND FUNCTIONS In this book, we

More information

Excel 2010 Worksheet 3. Table of Contents

Excel 2010 Worksheet 3. Table of Contents Table of Contents Graphs and Charts... 1 Chart Elements... 1 Column Charts:... 2 Pie Charts:... 6 Line graph 1:... 8 Line Graph 2:... 10 Scatter Charts... 12 Functions... 13 Calculate Averages (Mean):...

More information

Chapter 3: Rate Laws Excel Tutorial on Fitting logarithmic data

Chapter 3: Rate Laws Excel Tutorial on Fitting logarithmic data Chapter 3: Rate Laws Excel Tutorial on Fitting logarithmic data The following table shows the raw data which you need to fit to an appropriate equation k (s -1 ) T (K) 0.00043 312.5 0.00103 318.47 0.0018

More information

COMP1000 / Spreadsheets Week 2 Review

COMP1000 / Spreadsheets Week 2 Review / Spreadsheets Week 2 Review Plot chart Column chart/bar chart/pie chart Customize chart Chart style/labels/titles Add trendline Create table Create table/apply different style/print table Sort/filter

More information

MS Excel Advanced Level

MS Excel Advanced Level MS Excel Advanced Level Trainer : Etech Global Solution Contents Conditional Formatting... 1 Remove Duplicates... 4 Sorting... 5 Filtering... 6 Charts Column... 7 Charts Line... 10 Charts Bar... 10 Charts

More information

Microsoft Office Excel 2007: Basic Course 01 - Getting Started

Microsoft Office Excel 2007: Basic Course 01 - Getting Started Microsoft Office Excel 2007: Basic Course 01 - Getting Started Slide 1 Getting started Course objectives Identify spreadsheet components Identify the main components of Excel Use the Help feature Open

More information

Excel Tutorial 2: Formatting Workbook Text and Data

Excel Tutorial 2: Formatting Workbook Text and Data Excel Tutorial 2: Formatting Workbook Text and Data Microsoft Office 2013 Objectives Change fonts, font style, and font color Add fill colors and a background image Create formulas to calculate sales data

More information

Never Give Up Page 1

Never Give Up Page 1 VISUAL BASIC FOR APPLICATIONS (VBA) & MACROS TRAINING: Microsoft Visual Basic for Applications (VBA, Macros) when used with Microsoft Excel can build powerful automated business tools quickly and with

More information

Application of Skills: Microsoft Excel 2013 Tutorial

Application of Skills: Microsoft Excel 2013 Tutorial Application of Skills: Microsoft Excel 2013 Tutorial Throughout this module, you will progress through a series of steps to create a spreadsheet for sales of a club or organization. You will continue to

More information

One does not necessarily have special statistical software to perform statistical analyses.

One does not necessarily have special statistical software to perform statistical analyses. Appendix F How to Use a Data Spreadsheet Excel One does not necessarily have special statistical software to perform statistical analyses. Microsoft Office Excel can be used to run statistical procedures.

More information

What s New in Oracle Crystal Ball? What s New in Version Browse to:

What s New in Oracle Crystal Ball? What s New in Version Browse to: What s New in Oracle Crystal Ball? Browse to: - What s new in version 11.1.1.0.00 - What s new in version 7.3 - What s new in version 7.2 - What s new in version 7.1 - What s new in version 7.0 - What

More information

Microsoft Microsoft Excel 2013 Expert Part 1. Download Full Version :

Microsoft Microsoft Excel 2013 Expert Part 1. Download Full Version : Microsoft 77-427 Microsoft Excel 2013 Expert Part 1 Download Full Version : http://killexams.com/pass4sure/exam-detail/77-427 to analyze numerical data and to answer unexpected questions about your data

More information

Create Manual Page Breaks In Excel Vba Remove Vertical

Create Manual Page Breaks In Excel Vba Remove Vertical Create Manual Page Breaks In Excel Vba Remove Vertical The dotted line refers to automatic page break. To remove all the manual page breaks from a sheet (when the number of printing pages exceeds 1), follow.

More information

Assignment 1 MIS Spreadsheet (Excel)

Assignment 1 MIS Spreadsheet (Excel) Assignment 1 MIS Spreadsheet (Excel) Summary Create a Microsoft Excel file with six worksheets that provides extensive use of Excel capabilities including: importing data, formatting data in tables, summarizing

More information

Lesson 4: Auditing and Additional Formulas. Return to the FastCourse Excel 2007 Level 3 book page

Lesson 4: Auditing and Additional Formulas. Return to the FastCourse Excel 2007 Level 3 book page Lesson 4: Auditing and Additional Formulas Return to the FastCourse Excel 2007 Level 3 book page Lesson Objectives After studying this lesson, you will be able to: Use 3-D cell references in formulas to

More information

Microsoft Excel Lab: Data Analysis

Microsoft Excel Lab: Data Analysis 1 Microsoft Excel Lab: The purpose of this lab is to prepare the student to use Excel as a tool for analyzing data taken in other courses. The example used here comes from a Freshman physics lab with measurements

More information

Chapter 4. Microsoft Excel

Chapter 4. Microsoft Excel Chapter 4 Microsoft Excel Topic Introduction Spreadsheet Basic Screen Layout Modifying a Worksheet Formatting Cells Formulas and Functions Sorting and Filling Borders and Shading Charts Introduction A

More information

Welcome to Microsoft Excel 2013 p. 1 Customizing the QAT p. 5 Customizing the Ribbon Control p. 6 The Worksheet p. 6 Excel 2013 Specifications and

Welcome to Microsoft Excel 2013 p. 1 Customizing the QAT p. 5 Customizing the Ribbon Control p. 6 The Worksheet p. 6 Excel 2013 Specifications and Preface p. xi Welcome to Microsoft Excel 2013 p. 1 Customizing the QAT p. 5 Customizing the Ribbon Control p. 6 The Worksheet p. 6 Excel 2013 Specifications and Limits p. 9 Compatibility with Other Versions

More information

Excel 2. Module 3 Advanced Charts

Excel 2. Module 3 Advanced Charts Excel 2 Module 3 Advanced Charts Revised 1/1/17 People s Resource Center Module Overview This module is part of the Excel 2 course which is for advancing your knowledge of Excel. During this lesson we

More information

IF 1: 2: INDEX MATCH MATCH

IF 1: 2: INDEX MATCH MATCH How to Excel Part 3 Contents Exercise 1: Advanced IF formulas... 3 Exercise 2: INDEX MATCH MATCH... 6 Data validation... 7 Exercise 3 Recording Macros... 8 Setting up a Personal workbook... 10 Adding a

More information

Advanced Financial Modeling Macros. EduPristine

Advanced Financial Modeling Macros. EduPristine Advanced Financial Modeling Macros EduPristine www.edupristine.com/ca Agenda Introduction to Macros & Advanced Application Building in Excel Introduction and context Key Concepts in Macros Macros as recorded

More information

1 of 9 8/27/2014 10:53 AM Units: Teacher: MOExcel/Access, CORE Course: MOExcel/Access Year: 2012-13 Excel Unit A What is spreadsheet software? What are the parts of the Excel window? What are labels and

More information

Excel 2010 Macro Vba For Loop Through Rows In A Sheet

Excel 2010 Macro Vba For Loop Through Rows In A Sheet Excel 2010 Macro Vba For Loop Through Rows In A Sheet I'm using Excel 2013 & I'm putting together a macro to automate copy/pasting I've not used VBA for a very long time so I'm at a bit of a loss as to

More information

Reference and Style Guide for Microsoft Excel

Reference and Style Guide for Microsoft Excel Reference and Style Guide for Microsoft Excel TABLE OF CONTENTS Getting Acquainted 2 Basic Excel Features 2 Writing Cell Equations Relative and Absolute Addresses 3 Selecting Cells Highlighting, Moving

More information

Excel Pivot Tables & Macros

Excel Pivot Tables & Macros Excel 2007 Pivot Tables & Macros WORKSHOP DESCRIPTION...1 Overview 1 Prerequisites 1 Objectives 1 WHAT IS A PIVOT TABLE...2 Sample Example 2 PivotTable Terminology 3 Creating a PivotTable 4 Layout of

More information

CenterStone. Reports User Guide. Manhattan Software Inc. World Leading Real Estate, Asset & Facilities Management Software.

CenterStone. Reports User Guide. Manhattan Software Inc. World Leading Real Estate, Asset & Facilities Management Software. CenterStone Reports User Guide Version 1 Manhattan Software Inc. World Leading Real Estate, Asset & Facilities Management Software The information contained herein is the property of Manhattan Software,

More information

LmÉPï C Á npï À ƵÀ ïì itech Analytic Solutions

LmÉPï C Á npï À ƵÀ ïì itech Analytic Solutions LmÉPï C Á npï À ƵÀ ïì itech Analytic Solutions No. 9, 1st Floor, 8th Main, 9th Cross, SBM Colony, Brindavan Nagar, Mathikere, Bangalore 560 054 Email: itechanalytcisolutions@gmail.com Website: www.itechanalytcisolutions.com

More information

3. (1.0 point) To quickly switch to the Visual Basic Editor, press on your keyboard. a. Esc + F1 b. Ctrl + F7 c. Alt + F11 d.

3. (1.0 point) To quickly switch to the Visual Basic Editor, press on your keyboard. a. Esc + F1 b. Ctrl + F7 c. Alt + F11 d. Excel Tutorial 12 1. (1.0 point) Excel macros are written in the programming language. a. Perl b. JavaScript c. HTML d. VBA 2. (1.0 point) To edit a VBA macro, you need to use the Visual Basic. a. Manager

More information

Variables in VB. Keeping Track

Variables in VB. Keeping Track Variables in VB Keeping Track Variables Variables are named places in the computer memory that hold information. Variables hold only a single value at a time. Assigning a new value to them causes the old

More information

2. Getting started with MLwiN

2. Getting started with MLwiN 2. Getting started with MLwiN Introduction This chapter aims to provide you with some practice with MLwiN commands before you begin to fit multilevel models. It is may be helpful if you have already read

More information

Testpassport.

Testpassport. Testpassport http://www.testpassport.cn Exam : 77-427 Title : Microsoft Excel 2013 Expert Part 1 Version : Demo 1 / 4 1.You work as an Office Assistant for Blue Well Inc. The company has a Windows-based

More information

EXCEL CONNECT USER GUIDE

EXCEL CONNECT USER GUIDE USER GUIDE Developed and published by Expedience Software Copyright 2012-2017 Expedience Software Excel Connect Contents About this Guide... 1 The Style Palette User Guide 1 Excel Connect Overview... 2

More information

Microsoft Excel Using Excel in the Science Classroom

Microsoft Excel Using Excel in the Science Classroom Microsoft Excel Using Excel in the Science Classroom OBJECTIVE Students will take data and use an Excel spreadsheet to manipulate the information. This will include creating graphs, manipulating data,

More information

Pre-Lab Excel Problem

Pre-Lab Excel Problem Pre-Lab Excel Problem Read and follow the instructions carefully! Below you are given a problem which you are to solve using Excel. If you have not used the Excel spreadsheet a limited tutorial is given

More information

The Item_Master_addin.xlam is an Excel add-in file used to provide additional features to assist during plan development.

The Item_Master_addin.xlam is an Excel add-in file used to provide additional features to assist during plan development. Name: Tested Excel Version: Compatible Excel Version: Item_Master_addin.xlam Microsoft Excel 2013, 32bit version Microsoft Excel 2007 and up (32bit and 64 bit versions) Description The Item_Master_addin.xlam

More information

Structured Data, LLC RiskAMP User Guide. User Guide for the RiskAMP Monte Carlo Add-in

Structured Data, LLC RiskAMP User Guide. User Guide for the RiskAMP Monte Carlo Add-in Structured Data, LLC RiskAMP User Guide User Guide for the RiskAMP Monte Carlo Add-in Structured Data, LLC February, 2007 On the web at www.riskamp.com Contents Random Distribution Functions... 3 Normal

More information

Scientific Graphing in Excel 2013

Scientific Graphing in Excel 2013 Scientific Graphing in Excel 2013 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

SAMLab Tip Sheet #5 Creating Graphs

SAMLab Tip Sheet #5 Creating Graphs Creating Graphs The purpose of this tip sheet is to provide a basic demonstration of how to create graphs with Excel. Excel can generate a wide variety of graphs, but we will use only two as primary examples.

More information

The first few questions on this worksheet will deal with measures of central tendency. These data types tell us where the center of the data set lies.

The first few questions on this worksheet will deal with measures of central tendency. These data types tell us where the center of the data set lies. Instructions: You are given the following data below these instructions. Your client (Courtney) wants you to statistically analyze the data to help her reach conclusions about how well she is teaching.

More information

IDENTIFYING UNIQUE VALUES IN AN ARRAY OR RANGE (VBA)

IDENTIFYING UNIQUE VALUES IN AN ARRAY OR RANGE (VBA) Date: 20/11/2012 Procedure: Identifying Unique Values In An Array Or Range (VBA) Source: LINK Permalink: LINK Created by: HeelpBook Staff Document Version: 1.0 IDENTIFYING UNIQUE VALUES IN AN ARRAY OR

More information

Open Excel by following the directions listed below: Click on Start, select Programs, and the click on Microsoft Excel.

Open Excel by following the directions listed below: Click on Start, select Programs, and the click on Microsoft Excel. Candy is Dandy Grading Rubric You have been hired to conduct some market research about M&M's. First, you had your team purchase 4 large bags and the results are given for the contents of those bags. You

More information

1. Basic Steps for Data Analysis Data Editor. 2.4.To create a new SPSS file

1. Basic Steps for Data Analysis Data Editor. 2.4.To create a new SPSS file 1 SPSS Guide 2009 Content 1. Basic Steps for Data Analysis. 3 2. Data Editor. 2.4.To create a new SPSS file 3 4 3. Data Analysis/ Frequencies. 5 4. Recoding the variable into classes.. 5 5. Data Analysis/

More information

A Short Guide to Stata 10 for Windows

A Short Guide to Stata 10 for Windows A Short Guide to Stata 10 for Windows 1. Introduction 2 2. The Stata Environment 2 3. Where to get help 2 4. Opening and Saving Data 3 5. Importing Data 4 6. Data Manipulation 5 7. Descriptive Statistics

More information

SAMLab Handout #5 Creating Graphs

SAMLab Handout #5 Creating Graphs Creating Graphs The purpose of this tip sheet is to provide a basic demonstration of how to create graphs with Excel. Excel can generate a wide variety of graphs, but we will use only two as primary examples.

More information

Basics: How to Calculate Standard Deviation in Excel

Basics: How to Calculate Standard Deviation in Excel Basics: How to Calculate Standard Deviation in Excel In this guide, we are going to look at the basics of calculating the standard deviation of a data set. The calculations will be done step by step, without

More information

Structured Solutions Inc. Tools MS Project to Excel Export/Import Tools

Structured Solutions Inc. Tools MS Project to Excel Export/Import Tools Structured Solutions Inc. Tools MS Project to Excel Export/Import Tools This Macro Enabled Excel workbook contains a collection of useful tools that enables the user to Get, Post or Lookup data from MS

More information

Q&As. Excel 2010 Expert. Pass Microsoft Exam with 100% Guarantee. Free Download Real Questions & Answers PDF and VCE file from:

Q&As. Excel 2010 Expert. Pass Microsoft Exam with 100% Guarantee. Free Download Real Questions & Answers PDF and VCE file from: 77-888 Q&As Excel 2010 Expert Pass Microsoft 77-888 Exam with 100% Guarantee Free Download Real Questions & Answers PDF and VCE file from: https://www.pass4lead.com/77-888.html 100% Passing Guarantee 100%

More information

Programming with the Peltier Tech Utility

Programming with the Peltier Tech Utility Programming with the Peltier Tech Utility The Peltier Tech Utility was designed so that much of its functionality is available via VBA as well as through the Excel user interface. This document explains

More information