Dick Kusleika - Excel VBA Programming For Dummies

Здесь есть возможность читать онлайн «Dick Kusleika - Excel VBA Programming For Dummies» — ознакомительный отрывок электронной книги совершенно бесплатно, а после прочтения отрывка купить полную версию. В некоторых случаях можно слушать аудио, скачать через торрент в формате fb2 и присутствует краткое содержание. Жанр: unrecognised, на английском языке. Описание произведения, (предисловие) а так же отзывы посетителей доступны на портале библиотеки ЛибКат.

Excel VBA Programming For Dummies: краткое содержание, описание и аннотация

Предлагаем к чтению аннотацию, описание, краткое содержание или предисловие (зависит от того, что написал сам автор книги «Excel VBA Programming For Dummies»). Если вы не нашли необходимую информацию о книге — напишите в комментариях, мы постараемся отыскать её.

Find out what Excel is capable of with this step-by-step guide to VBA
Excel VBA Programming For Dummies
Excel VBA, Excel VBA Programming For Dummies

Excel VBA Programming For Dummies — читать онлайн ознакомительный отрывок

Ниже представлен текст книги, разбитый по страницам. Система сохранения места последней прочитанной страницы, позволяет с удобством читать онлайн бесплатно книгу «Excel VBA Programming For Dummies», без необходимости каждый раз заново искать на чём Вы остановились. Поставьте закладку, и сможете в любой момент перейти на страницу, на которой закончили чтение.

Тёмная тема
Сбросить

Интервал:

Закладка:

Сделать

Excel VBA Programming For Dummies Published by John Wiley Sons Inc111 - фото 1

Excel® VBA Programming For Dummies®

Published by: John Wiley & Sons, Inc.,111 River Street, Hoboken, NJ 07030-5774, www.wiley.com

Copyright © 2022 by John Wiley & Sons, Inc., Hoboken, New Jersey

Media and software compilation copyright © 2012 by John Wiley & Sons, Inc. All rights reserved.

Published simultaneously in Canada

No part of this publication may be reproduced, stored in a retrieval system or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, scanning or otherwise, except as permitted under Sections 107 or 108 of the 1976 United States Copyright Act, without the prior written permission of the Publisher. Requests to the Publisher for permission should be addressed to the Permissions Department, John Wiley & Sons, Inc., 111 River Street, Hoboken, NJ 07030, (201) 748-6011, fax (201) 748-6008, or online at http://www.wiley.com/go/permissions .

Trademarks:Wiley, For Dummies, the Dummies Man logo, Dummies.com, Making Everything Easier, and related trade dress are trademarks or registered trademarks of John Wiley & Sons, Inc. and may not be used without written permission. Microsoft and Excel are trademarks or registered trademarks of Microsoft Corporation in the United States and other countries. All other trademarks are the property of their respective owners. John Wiley & Sons, Inc. is not associated with any product or vendor mentioned in this book.

LIMIT OF LIABILITY/DISCLAIMER OF WARRANTY: WHILE THE PUBLISHER AND AUTHORS HAVE USED THEIR BEST EFFORTS IN PREPARING THIS WORK, THEY MAKE NO REPRESENTATIONS OR WARRANTIES WITH RESPECT TO THE ACCURACY OR COMPLETENESS OF THE CONTENTS OF THIS WORK AND SPECIFICALLY DISCLAIM ALL WARRANTIES, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. NO WARRANTY MAY BE CREATED OR EXTENDED BY SALES REPRESENTATIVES, WRITTEN SALES MATERIALS OR PROMOTIONAL STATEMENTS FOR THIS WORK. THE FACT THAT AN ORGANIZATION, WEBSITE, OR PRODUCT IS REFERRED TO IN THIS WORK AS A CITATION AND/OR POTENTIAL SOURCE OF FURTHER INFORMATION DOES NOT MEAN THAT THE PUBLISHER AND AUTHORS ENDORSE THE INFORMATION OR SERVICES THE ORGANIZATION, WEBSITE, OR PRODUCT MAY PROVIDE OR RECOMMENDATIONS IT MAY MAKE. THIS WORK IS SOLD WITH THE UNDERSTANDING THAT THE PUBLISHER IS NOT ENGAGED IN RENDERING PROFESSIONAL SERVICES. THE ADVICE AND STRATEGIES CONTAINED HEREIN MAY NOT BE SUITABLE FOR YOUR SITUATION. YOU SHOULD CONSULT WITH A SPECIALIST WHERE APPROPRIATE. FURTHER, READERS SHOULD BE AWARE THAT WEBSITES LISTED IN THIS WORK MAY HAVE CHANGED OR DISAPPEARED BETWEEN WHEN THIS WORK WAS WRITTEN AND WHEN IT IS READ. NEITHER THE PUBLISHER NOR AUTHORS SHALL BE LIABLE FOR ANY LOSS OF PROFIT OR ANY OTHER COMMERCIAL DAMAGES, INCLUDING BUT NOT LIMITED TO SPECIAL, INCIDENTAL, CONSEQUENTIAL, OR OTHER DAMAGES.

For general information on our other products and services, please contact our Customer Care Department within the U.S. at 877-762-2974, outside the U.S. at 317-572-3993, or fax 317-572-4002. For technical support, please visit https://hub.wiley.com/community/support/dummies .

Wiley publishes in a variety of print and electronic formats and by print-on-demand. Some material included with standard print versions of this book may not be included in e-books or in print-on-demand. If this book refers to media such as a CD or DVD that is not included in the version you purchased, you may download this material at http://booksupport.wiley.com . For more information about Wiley products, visit www.wiley.com .

Library of Congress Control Number: 2021951691

ISBN 978-1-119-84307-8 (pbk); ISBN 978-1-119-84308-5 (ebk); ISBN 978-1-119-84309-2 (ebk)

Excel® VBA Programming For Dummies®

To view this book's Cheat Sheet, simply go to www.dummies.comand search for “Excel VBA Programming For Dummies Cheat Sheet” in the Search box.

Table of Contents

1 Cover

2 Title Page

3 Copyright

4 Introduction About This Book Foolish Assumptions Icons Used in This Book Beyond the Book Where to Go from Here

5 Part 1: Starting Excel VBA Programming Chapter 1: Getting to Know VBA Understanding VBA Basics Knowing What VBA Can Do Getting the Most from VBA Understanding VBA Concepts Ensuring Excel Compatibility Chapter 2: Building Simple Macros Displaying the Developer Tab Creating a Macro Preparing the Environment Recording a Macro Running the Macro Viewing a Macro in the Visual Basic Editor Modifying the Macro Saving Workbooks That Contain Macros Understanding Macro Security

6 Part 2: Employing VBA with Excel Chapter 3: Working in the Visual Basic Editor Getting to Know the Visual Basic Editor Working with the Project Explorer Working with a Code Pane Customizing the VBE Chapter 4: Introducing the Excel Object Model Working with the Excel Object Model Diving into Object Properties and Methods Finding Out More from VBA Resources Chapter 5: VBA Sub and Function Procedures Understanding Subs versus Functions Naming Subs and Functions Executing Sub procedures Executing Function Procedures Chapter 6: Using the Excel Macro Recorder Recording Basics Preparing to Record Choosing Between Relative and Absolute Mode Watching the Macro Recorder in Action Specifying Recording Options for Your Macro Streamlining Code Generated by the Macro Recorder

7 Part 3: Programming Concepts Chapter 7: Essential VBA Language Elements Using Comments in Your VBA Code Using Variables, Constants, and Data Types Using Assignment Statements Working with Arrays Using Labels Chapter 8: Working with Range Objects Referring to Range Objects Referring to a Range Using Properties Working with Range Object Properties Taking Action with Range Object Methods Chapter 9: Using VBA and Worksheet Functions Understanding Functions Using Built-In VBA Functions Using Worksheet Functions in VBA Using Custom Functions Chapter 10: Controlling Program Flow and Making Decisions Going with the Flow, Dude The GoTo Statement Decisions, Decisions Knocking Your Code for a Loop Using For Each-Next Loops with Collections Chapter 11: Automatic Procedures and Events Preparing for the Big Event Knowing Where to Put the Event Code Writing an Event-Handler Procedure Triggering Workbook Events Using Activation Events Programming Worksheet-Related Events Understanding Events Not Associated with Objects Chapter 12: Error-Handling Techniques Types of Errors An Erroneous Macro Example Alternate Ways of Handling Errors Handling Errors: The Details An Intentional Error Chapter 13: Bug Extermination Techniques Species of Bugs Identifying Bugs Debugging Techniques Using the Debugger’s Tools Bug Reduction Tips Chapter 14: VBA Programming Examples Working with Ranges Changing Excel Settings Working with Charts VBA Speed Tips

8 Part 4: Communicating with Your Users Chapter 15: Simple Dialog Boxes Interacting with the User in VBA Displaying Messages with the MsgBox Function Getting Data with an Input Box Allowing the User to Select a File or Folder Displaying Excel’s Built-In Dialog Boxes Chapter 16: UserForm Basics Knowing When to Use a UserForm Creating UserForms: An Overview Working with UserForms A UserForm Example Chapter 17: Using UserForm Controls Getting Started with Dialog Box Controls Learning Dialog Box Controls Details Working with Dialog Box Controls Dialog Box Aesthetics Chapter 18: UserForm Techniques and Tricks Using Dialog Boxes A UserForm Example A ListBox Control Example Selecting a Range Using Multiple Sets of Option Buttons Using a Spin Button and a Text Box Using a UserForm as a Progress Indicator Creating a Modeless Tabbed Dialog Box Displaying a Chart in a UserForm A Dialog Box Checklist Chapter 19: Accessing Your Macros through the User Interface Customizing the Ribbon Customizing the Excel UI with VBA

Читать дальше
Тёмная тема
Сбросить

Интервал:

Закладка:

Сделать

Похожие книги на «Excel VBA Programming For Dummies»

Представляем Вашему вниманию похожие книги на «Excel VBA Programming For Dummies» списком для выбора. Мы отобрали схожую по названию и смыслу литературу в надежде предоставить читателям больше вариантов отыскать новые, интересные, ещё непрочитанные произведения.


Отзывы о книге «Excel VBA Programming For Dummies»

Обсуждение, отзывы о книге «Excel VBA Programming For Dummies» и просто собственные мнения читателей. Оставьте ваши комментарии, напишите, что Вы думаете о произведении, его смысле или главных героях. Укажите что конкретно понравилось, а что нет, и почему Вы так считаете.

x