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: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
BEGIN:DAYLIGHT
TZOFFSETFROM:-0700
TZOFFSETTO:-0600
TZNAME:MDT
DTSTART:20230312T090000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0600
TZOFFSETTO:-0700
TZNAME:MST
DTSTART:20231105T080000
END:STANDARD
END:VTIMEZONE
BEGIN:VTIMEZONE
TZID:UTC
BEGIN:STANDARD
TZOFFSETFROM:+0000
TZOFFSETTO:+0000
TZNAME:UTC
DTSTART:20210101T000000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Denver:20220330T083000
DTEND;TZID=America/Denver:20220331T160000
DTSTAMP:20220119T220703Z
CREATED:20210315T212413Z
LAST-MODIFIED:20220119T220703Z
UID:3634-1648629000-1648742400@computertrainingsource.com
SUMMARY:Excel VBA (Macros) - Two Day Course
DESCRIPTION:Course length: 2.0 day(s)\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-2-2/
ORGANIZER;CN="Jim Rose":MAILTO:Jrose@ComputerTrainingSource.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=UTC:20220331T083000
DTEND;TZID=UTC:20220331T160000
DTSTAMP:20220119T230931Z
CREATED:20201216T024131Z
LAST-MODIFIED:20220119T230931Z
UID:3672-1648715400-1648742400@computertrainingsource.com
SUMMARY:NEW - Project Management for Non-Project Managers
DESCRIPTION:Project Management for Non-Project Managers\n$250 \nCourse Length: 1 day \nCourse Number: 095015\n\nCourse Length: 1 day\nCourse Description\n\n\nSuccessfully managing a project requires effective planning and adherence to the industry’s best practices in every step of the process. By understanding the fundamentals of project management\, you will be better prepared to initiate a project in your organization and position it for success. In this course\, you will identify effective project management practices and their related processes. \nAt this point in your professional development\, you are ready to take on the responsibility for managing projects. You can manage a project by developing a solid understanding of the fundamentals of project management and its underlying structure and elements\, including project phases\, project life cycles\, stakeholders\, and areas of expertise. These\, coupled with the ability to identify the project management processes that are recognized industry-wide as good practice\, will help you to apply effective project management techniques to improve the efficiency of your projects and ensure their success. \nCourse Objectives:\nIn this course\, you will examine the elements of sound project management and apply the generally recognized practices to successfully manage projects. \nYou will: \n\nIdentify the key processes and requirements of project management.\nInitiate a project.\nPlan for time and cost.\nPlan for project risks\, communication\, and change control.\nExecute\, manage\, and control a project.\nClose a project.\n\n  \nTarget Student:\nThis course is designed for individuals whose primary job is not project management\, but who manage projects on an informal basis. Also\, anyone who is considering a career path in project management and desiring a complete overview of the field and its generally accepted practices can benefit from this course. \n\n\n\nCourse Content\n  \nLesson 1: Getting Started with Project Management\nTopic A: Identify the Characteristics of a Project \nTopic B: Identify the Project Management Life Cycle \nTopic C: Identify the Role of a Project Manager \nLesson 2: Initiating a Project\nTopic A: Determine the Scope of a Project \nTopic B: Identify the Skills for a Project Team \nTopic C: Identify the Risks to a Project \nLesson 3: Planning for Time and Cost\nTopic A: Create a WBS \nTopic B: Sequence the Activities \nTopic C: Create a Project Schedule \nTopic D: Determine Project Costs \nLesson 4: Planning for Project Risks\, Communication\, and Change Control\nTopic A: Analyze the Risks to a Project \nTopic B: Create a Communication Plan \nTopic C: Plan for Change Control \nLesson 5: Managing a Project\nTopic A: Begin Project Work \nTopic B: Execute the Project Plan \nTopic C: Track Project Progress \nTopic D: Report Performance \nTopic E: Implement Change Control \nLesson 6: Closing the Project\nTopic A: Close a Project \nTopic B: Create a Final Report \n\nThis event ticket will close at 12:00 pm the day before the event.
URL:https://computertrainingsource.com/event/excel-o365-l3-5-2-2-2-2-2-2-2/
LOCATION:CA\, United States
ORGANIZER;CN="Jim Rose":MAILTO:Jrose@ComputerTrainingSource.com
END:VEVENT
END:VCALENDAR