BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Computer Training Source - ECPv6.17.1//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-WR-CALNAME:Computer Training Source
X-ORIGINAL-URL:https://computertrainingsource.com
X-WR-CALDESC:Events for Computer Training Source
REFRESH-INTERVAL;VALUE=DURATION:PT1H
X-Robots-Tag:noindex
X-PUBLISHED-TTL:PT1H
BEGIN:VTIMEZONE
TZID:America/Denver
BEGIN:DAYLIGHT
TZOFFSETFROM:-0700
TZOFFSETTO:-0600
TZNAME:MDT
DTSTART:20200308T090000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0600
TZOFFSETTO:-0700
TZNAME:MST
DTSTART:20201101T080000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:-0700
TZOFFSETTO:-0600
TZNAME:MDT
DTSTART:20210314T090000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0600
TZOFFSETTO:-0700
TZNAME:MST
DTSTART:20211107T080000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:-0700
TZOFFSETTO:-0600
TZNAME:MDT
DTSTART:20220313T090000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0600
TZOFFSETTO:-0700
TZNAME:MST
DTSTART:20221106T080000
END:STANDARD
END:VTIMEZONE
BEGIN:VTIMEZONE
TZID:UTC
BEGIN:STANDARD
TZOFFSETFROM:+0000
TZOFFSETTO:+0000
TZNAME:UTC
DTSTART:20200101T000000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Denver:20211025T083000
DTEND;TZID=America/Denver:20211026T160000
DTSTAMP:20210831T213240Z
CREATED:20210315T212413Z
LAST-MODIFIED:20210831T213240Z
UID:3182-1635150600-1635264000@computertrainingsource.com
SUMMARY:Excel VBA (Macros) - Two Day Course (October 25th and 26th)
DESCRIPTION:Course length: 2.0 day(s) October 25th and 26th\nCourse Description  \nCourse Objective: You will automate your job tasks in Microsoft® Office Excel® O365. \nTarget Student: This course is intended for advanced Microsoft Excel professionals that need to automate Excel spreadsheet tasks using Visual Basic for Applications (VBA). \nPrerequisites: Knowledge of the basics of Excel\, including how to create\, edit\, format\, and print worksheets that include charts and sorted and filtered data. Students are recommended to first take the following Logical Operations courses or have equivalent knowledge: \n\nMicrosoft® Office Excel® O365: Level 1\nMicrosoft® Office Excel® O365: Level 2\nMicrosoft® Office Excel® O365: Level 3\n\nLESSON ONE: INTRODUCTION TO VISUAL BASIC FOR APPLICATIONS (VBA) WHAT IS VISUAL BASIC FOR APPLICATIONS (VBA)? \nOBJECT-ORIENTED PROGRAMMING PROCEDURES:\nOBJECTS\nCONTAINERS\nCOLLECTIONS\nPROPERTIES:\nMETHODS:\nEVENTS:\nHOW VBA REFERS TO OBJECTS\nACCESSING THE MACRO COMMANDS\nSECURITY SETTINGS\nSAVING WORKBOOKS THAT CONTAIN MACROS\nLESSON TWO: UNDERSTANDING MACROS \nWRITING CODE VS RECORDING MACROS\nABSOLUTE VS RELATIVE REFERENCING\nUSING THE MACRO RECORDER\nRECORDING IN RELATIVE MODE\nMODIFYING MACROS\nMETHODS FOR EXECUTING MACROS\nACCESSING MACROS THROUGH THE QUICK ACCESS\nTOOLBAR\nACCESSING MACROS THROUGH THE RIBBON\nACCESSING MACROS THROUGH SHAPES OR IMAGES\nACCESSING MACROS THROUGH CONTROLS\nLESSON THREE: GETTING TO KNOW THE VISUAL BASIC EDITOR (VBE) \nTHE MICROSOFT VISUAL BASIC EDITOR\nTHE PROJECT EXPLORER THE PROPERTIES WINDOW\nTHE CODE WINDOW\nADDING A NEW MODULE NAMING MODULES\nREMOVING A MODULE EXPORTING AND IMPORTING MODULES\nPROTECTING CODE\nTHE OBJECT BROWSER\nCUSTOMIZING THE VISUAL BASIC ENVIRONMENT\nThe Editor Tab\nCode Settings\nWindow Setting\nThe Editor Format Tab\nThe General Tab\nThe Docking Tab\nDOCKING WINDOWS\nLESSON FOUR: TROUBLESHOOTING AND DEBUGGING ERRORS \nTROUBLESHOOTING AND DEBUGGING ERRORS\nTYPES OF ERRORS Syntax Errors (aka Compile Error)\nRun-Time Errors\nLogical Errors\nDEBUGGING TECHNIQUES\nDebugging Tools\nSetting a Breakpoint\nThe Watch Window\nStepping Through Code\nDeleting a Watch Expression\nThe Immediate Window\nThe Locals Window\nLESSON FIVE: WRITING VBA CODE \nESSENTIALS TO WRITING VBA CODE\nSub Procedures vs Functions\nMacro Naming Rules\nComments\nSUB PROCEDURES\nUsing Objects\nUsing Methods\nUsing Events\nStoring Procedures in the Personal Macro\nWorkbook\nCopy and Paste Procedures\nAssigning Macro Buttons to the Quick\nAccess Toolbar (QAT)\nCALLING A SUB PROCEDURE\nEXPRESSIONS\nVARIABLES\nDeclaring a Variable\nOption Explicit\nDeclaring Multiple Variables\nAssigning a Value to a Variable\nDATA TYPES\nUsing Byte Variables\nUsing String Variables\nUsing Currency Variables\nUsing Date Variables\nVARIANTS CONSTANTS SCOPE\nProcedure Level Scope\nPrivate Level Scope\nPublic Level Scope\nVBA STANDARD OPERATORS\nThe Assignment Operator ( = )\nThe Line Continuation Character ( _)\nThe Parenthesis ( ) The Comma ( \, )\nThe Colon Operator ( : )\nThe Ampersand ( & )\nCarriage Return Line Feed (vbCrLf)\nDefining Parameters (:=)\nArithmetic Operators Comparison\nOperators\nLogical Operators\nTHE CELLS OBJECT\nThe Value Property\nFORMATTING DATA\nThe Range Object\nThe Select Method\nThe CurrentRegion Property\nThe RangeSort Method\nMANIPULATING WORKSHEET DATA\nThe ActiveSheet Property\nThe Name Property\nThe Selection Property\nThe Copy Method\nThe Paste Method\nThe Offset Property\nThe End Property\nThe Font Property\nThe With End With Construct\nThe Call Statement\nThe Columns and Rows Properties\nThe AutoFit Method ARRAYS\nLESSON SIX: WORKING WITH CONTROL STRUCTURES  \nCONTROL STRUCTURES\nDecision Structures\nIf…Then\nIf…Then…Else\nSelect Case\nLOOPS\nFor Next Loop\nStepping For Each\nDo Until Loop\nDo While Loop\nLESSON SEVEN: WORKING WITH FUNCTION PROCEDURES \nFUNCTIONS\nCreating a Function\nMacroOptions Method\nCalling a Function\nCalling a Function in a Worksheet\nWRITE DATA TO TEXT FILES\nUSER INTERACTION FUNCTIONS\nWorking with Message Boxes\nWorking with Input Boxes\nReturn Values\nLESSON EIGHT: ERROR HANDLING \nERROR HANDLING\nThe Error GoTo Statement\nThe On Error Resume Next\nThe Error Object\nLESSON NINE: USER FORMS \nUSER FORMS\nDisplaying a UserForm\nPrinting a Form\nHiding a Form\nClosing a Form\nFORM PROPERTIES\nName Location Size\nCONTROLS\nAligning Controls\nTab Order\nBorders\nFont\nControl Colors\nControl Visibility\nControl Availability\nFocus\nCreating a User Form\nWriting Code to Show the User Form\nEvent Procedures for UserForm Controls\nAttaching Events to the Form Controls\nDependent Combo Boxes\nLESSON TEN: MANAGING SHEETS \nMANIPULATING WORKSHEETS\nSheet Types\nWorksheet Reference Options\nThe Add Method\nThe Delete Method\nThe Copy Method\nThe Move Method\nCREATING A CHART SHEET\nThe Declared Range Object\nThe Set Statement\nREFERENCE  \nGLOSSARY\nVISUAL BASIC LANGUAGE KEYWORDS\nReserved Keywords\nUnreserved Keywords\nOBJECT NAMING CONVENTIONS\nCODE SNIPPETS\nCOMMON EXCEL VBA STATEMENTS\nEXCEL VBA FUNCTIONS\nVBA KEYBOARD SHORTCUTS
URL:https://computertrainingsource.com/event/excel-excel-vba-two-day-course-may-4th-may-5th-syst-0026-2-2-2/
ORGANIZER;CN="Jim Rose":MAILTO:Jrose@ComputerTrainingSource.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=UTC:20211026T083000
DTEND;TZID=UTC:20211026T113000
DTSTAMP:20210831T224115Z
CREATED:20201216T024841Z
LAST-MODIFIED:20210831T224115Z
UID:3245-1635237000-1635247800@computertrainingsource.com
SUMMARY:NEW - Microsoft Forms
DESCRIPTION:Gathering Information with Microsoft® Forms\n$150 \nCourse Length: .5 Day \nCourse Number: 025015-04\n  \nCourse Description\n\n\n  \nOverview:\nThis course builds on the foundational knowledge of the Microsoft® Office 365® online apps and takes a deeper look at the other apps beyond Microsoft Word\, Excel®\, and PowerPoint®. The Forms app is a tool for collecting information that can be used to help determine your next course of action. \nTarget Student:\nThis course is designed for knowledge workers in a variety of professional situations and fields who have been introduced to the Office 365 online productivity apps and want to explore and use them to collaborate\, communicate\, and share resources with members of their organizations. \n  \n\n\nCourse Content\n  \nLesson 1: Gathering Information with Forms\nTopic A: Create a Form \n– Microsoft Forms \n– New Form Creation \n– The Untitled Form \n– The Add Question Toolbar \n– Question Interface \n– The Preview Feature \n– How to Create Forms \n– Creating Forms \nTopic B: Share Forms and Collect Responses \n– The Share Settings \n– How to Share Forms \n– Sharing Forms \n– Responding to Forms \n– The Responses Tab \n– Reviewing the Collected Responses \n– Responses in Excel \n– Reviewing the Responses in Excel
URL:https://computertrainingsource.com/event/microsoft-o365-project-2-2-2-2-3-2-2/
LOCATION:CA\, United States
ORGANIZER;CN="Jim Rose":MAILTO:Jrose@ComputerTrainingSource.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=UTC:20211026T083000
DTEND;TZID=UTC:20211026T160000
DTSTAMP:20210927T162429Z
CREATED:20201216T034347Z
LAST-MODIFIED:20210927T162429Z
UID:3363-1635237000-1635264000@computertrainingsource.com
SUMMARY:NEW - Analysis for Office – AO for Excel
DESCRIPTION:Analysis for Office – AO for Excel\nCourse Number: 092721AO\nCourse Length:  1 day\nCourse Description\nOverview:\nThis course is intended for users interested in building and analyzing workbooks using SAP BusinessObjects Analysis edition for Microsoft Excel. \nIn AO you can use SAP BW data sources from the BI platform data sources. The data is displayed in the workbook in crosstabs. You can insert multiple crosstabs in a workbook with data from different sources and systems. If the workbook will be used by different users\, it is also helpful to add info fields with information on the data source and filter status. \nUsing the design panel\, you can analyze the data and change the view on the displayed data. You can add and remove dimensions and measures to be displayed easily with drag and drop. To avoid single refreshes after each step\, you can pause the refresh to build a crosstab. After ending the pause\, all changes are applied at once. \nYou can refine your analysis using conditional formatting\, filter\, prompting\, calculations and display hierarchies. You can also add charts to your analysis. If you want to keep a status of your navigation\, you can save it as an analysis view. \nUpon successful completion of this course\, you will be able to: \nIdentify the components of Analysis for Office \n\nDesign and edit a basic report\nUse an AO crosstab\nCreate and modify charts\nDesign and advanced report using hierarchies and filters\nCreate a report from scratch\, using queries\nGroup AO crosstabs\nLink and unlink dimensions for separate crosstabs\n\n  \n\n\n\nThis event ticket will close at 12:00 pm the day before the event.
URL:https://computertrainingsource.com/event/powerpoint-o365-l2-3-2-3-2-2-2/
LOCATION:CA\, United States
ORGANIZER;CN="Jim Rose":MAILTO:Jrose@ComputerTrainingSource.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Denver:20211026T083000
DTEND;TZID=America/Denver:20211028T160000
DTSTAMP:20210831T230304Z
CREATED:20210209T032545Z
LAST-MODIFIED:20210831T230304Z
UID:3252-1635237000-1635436800@computertrainingsource.com
SUMMARY:Introduction To SQL - 3-Day Class
DESCRIPTION:SQL: – Introduction Using Oracle Database  \n$595 Per Day \n035200SE (Rev 1.0) \nCourse Length: 3 days \nDescription \nLearning the SQL language is one of the most basic tasks required for the use of a relational database. SQL proficiency is essential for business users\, database developers\, database administrators and any other database professional. This textbook introduces the basics of the SQL language and the Oracle Relational Database Management System (RDBMS). One will become acquainted with the differences in the working environment between a traditional on-premise database installation and the Oracle database service cloud-computing platform. \nSince SQL is an industry standard language\, many of the topics presented and many of the skills you will acquire will be applicable to other database platforms\, such as Microsoft SQL Server\, IBM DB2\, the open-source databases MySQL and PostgreSQL\, and others. \nThis textbook takes a unique approach to SQL training in that it incorporates data modeling theory\, relational database theory\, graphical depictions of theoretical concepts and numerous examples of actual SQL syntax into one learning vehicle. \nAudience \nThe target audience for this textbook is all Oracle professionals\, both business and systems professionals. Among the specific groups for whom this textbook will be helpful are: \n• Business and non-IT professionals\n• Application designers and database developers\n• Business Intelligence (BI) analysts and consumers\n• Database administrators\n• Web server administrators \n  \nTraining Suggestions \nThis textbook may be used as one module within a Sideris textbook kit entitled Oracle Database 12c: SQL – Fundamentals (Levels I & II). When delivered in this format as an instructor-led training (ILT) or live virtual training session\, the suggested presentation length of all chapters is between 5 and 6 days. \nThe sequence in which the modules should be considered is as follows: \nOracle Database 12c: SQL I – Introduction\nOracle Database 12c: SQL II – Intermediate \nCertification \nThis textbook and the subsequent ones within this series consider subjects applicable to certification as an Oracle Database Certified SQL Expert. The topics considered are included within “Exam 1Z0-047: Oracle Database: SQL Certified Expert”. \nObjectives \nThe first portion of this textbook considers the logical models upon which a relational database is based and the various configurations and environments in which you may work with the Oracle database. The next segment focuses on the actual SQL syntax for writing database queries. You will begin with the simplest of queries and then proceed onto moderately complex query scenarios. Finally\, this textbook covers the DDL\, DML and transaction control portions of the SQL language that allow one to create\, maintain and manipulate application database objects and application data. \n  \nContent \nRelational Databases & Data Models \n\nAbout Data Models\nAbout the Relational Model\nThe Electronics Data Model\nAbout the Relational DBMS\n\nSelection & Setup of the Database Interface \n\nConsidering Available Tools\nSelecting the Appropriate Tool\nOracle NET Database Connections\nOracle PAAS Database Connections\nSetup SQL Developer\nSetup SQLPLUS\nSetup JDEVELOPER\n\nUsing the Database Interface \n\nAbout Bind & Substitution Variables\nUsing SQL Developer\nUsing SQLPlus\n\nIntroduction to the SQL Language \n\nAbout the SQL Language\nCharacteristics of SQL\nIntroducing SQL Using Select\nSQL Rules\n\nThe Select Statement \n\nThe Select Statement\nDistinct / Unique Keyword\nUsing Alias Names\n\nRestricting Results with the Where Clause \n\nAbout Logical Operators\nEquality Operator\nBoolean Operators\nREGEXP_LIKE()\nIn Operator\n\nSorting Data with the Order by Clause \n\nAbout the Order by Clause\nMultiple Column Sorts\nSpecify the Sort Sequence\nAbout Null Values within Sorts\nUsing Column Aliases\n\nPseudo Columns\, Functions & Top-N Queries \n\nROWID Pseudo Column\nORA_ROWSCN Pseudo Column\nROWNUM Pseudo Column\nAbout the Built-In Functions\nSYSDATE\nUSER & UID\nSESSIONTIMEZONE Function\nUsing the Dual Table\nROW LIMITING & TOP-N Queries\nFETCH FIRST x ROWS ONLY Clause\nOFFSET x ROWS Clause\nFETCH … PERCENT Clause\nThe WITH TIES Option\n\nJoining Tables \n\nAbout JOINs\nINNER JOIN\nREFLEXIVE JOIN\nNON-KEY JOIN\nOUTER JOIN\n\nUsing the Set Operators \n\nAbout the Set Operators\nSQL Set Operator Examples\nUNION Example\nINTERSECT example\nMINUS example\nUNION ALL\n\nUsing Sub-Queries \n\nFinding DAT with Sub-Queries\nStandard Sub-Queries\nCorrelated Sub-Queries\nThe EXISTS Operator\n\nAggregating Data within Groups \n\nAbout Summary Groups\nFind Groups within the Tables\nSelect Data from the Base Tables\nSelect Groups from the Results\n\nUse DDL to Create & Manage Tables \n\nCreate Table Statement\nColumn Data Types\nNOT NULL\nDEFAULT\nDESCRIBE\nAlter Table Statement\nDrop Table Statement\nTable DDL Using SQL Developer\nAlter User Statement\nAlter Session Statement\nNLS_LANGUAGE\nNLS_DATE\n\nUse DML to Manipulate Data \n\nThe INSERT statement\nThe DELETE statement\nThe UPDATE statement\nAbout transactions\nTransaction rollback\nTransaction commits\nTransaction savepoint\nThe set transaction statement\nSet transaction read only statement rules\n\n 
URL:https://computertrainingsource.com/event/sql-for-data-analytics-2-2-2/
ORGANIZER;CN="Jim Rose":MAILTO:Jrose@ComputerTrainingSource.com
END:VEVENT
END:VCALENDAR