Excel 2016 Power Programming with VBA
eBook - ePub

Excel 2016 Power Programming with VBA

Michael Alexander, Richard Kusleika

Compartir libro
  1. English
  2. ePUB (apto para móviles)
  3. Disponible en iOS y Android
eBook - ePub

Excel 2016 Power Programming with VBA

Michael Alexander, Richard Kusleika

Detalles del libro
Vista previa del libro
Índice
Citas

Información del libro

Maximize your Excel experience with VBA

Excel 2016 Power Programming with VBA is fully updated to cover all the latest tools and tricks of Excel 2016. Encompassing an analysis of Excel application development and a complete introduction to Visual Basic for Applications (VBA), this comprehensive book presents all of the techniques you need to develop both large and small Excel applications. Over 800 pages of tips, tricks, and best practices shed light on key topics, such as the Excel interface, file formats, enhanced interactivity with other Office applications, and improved collaboration features. In addition to the procedures, tips, and ideas that will expand your capabilities, this resource provides you with access to over 100 online example Excel workbooks and the Power Utility Pak, found on the Mr. Spreadsheet website.

Understanding how to leverage VBA to improve your Excel programming skills can enhance the quality of deliverables that you produce—and can help you take your career to the next level.

  • Explore fully updated content that offers comprehensive coverage through over 900 pages of tips, tricks, and techniques
  • Leverage templates and worksheets that put your new knowledge in action, and reinforce the skills introduced in the text
  • Access online resources, including the Power Utility Pak, that supplement the content
  • Improve your capabilities regarding Excel programming with VBA, unlocking more of your potential in the office

Excel 2016 Power Programming with VBA is a fundamental resource for intermediate to advanced users who want to polish their skills regarding spreadsheet applications using VBA.

Preguntas frecuentes

¿Cómo cancelo mi suscripción?
Simplemente, dirígete a la sección ajustes de la cuenta y haz clic en «Cancelar suscripción». Así de sencillo. Después de cancelar tu suscripción, esta permanecerá activa el tiempo restante que hayas pagado. Obtén más información aquí.
¿Cómo descargo los libros?
Por el momento, todos nuestros libros ePub adaptables a dispositivos móviles se pueden descargar a través de la aplicación. La mayor parte de nuestros PDF también se puede descargar y ya estamos trabajando para que el resto también sea descargable. Obtén más información aquí.
¿En qué se diferencian los planes de precios?
Ambos planes te permiten acceder por completo a la biblioteca y a todas las funciones de Perlego. Las únicas diferencias son el precio y el período de suscripción: con el plan anual ahorrarás en torno a un 30 % en comparación con 12 meses de un plan mensual.
¿Qué es Perlego?
Somos un servicio de suscripción de libros de texto en línea que te permite acceder a toda una biblioteca en línea por menos de lo que cuesta un libro al mes. Con más de un millón de libros sobre más de 1000 categorías, ¡tenemos todo lo que necesitas! Obtén más información aquí.
¿Perlego ofrece la función de texto a voz?
Busca el símbolo de lectura en voz alta en tu próximo libro para ver si puedes escucharlo. La herramienta de lectura en voz alta lee el texto en voz alta por ti, resaltando el texto a medida que se lee. Puedes pausarla, acelerarla y ralentizarla. Obtén más información aquí.
¿Es Excel 2016 Power Programming with VBA un PDF/ePUB en línea?
Sí, puedes acceder a Excel 2016 Power Programming with VBA de Michael Alexander, Richard Kusleika en formato PDF o ePUB, así como a otros libros populares de Computer Science y Desktop Applications. Tenemos más de un millón de libros disponibles en nuestro catálogo para que explores.

Información

Editorial
Wiley
Año
2016
ISBN
9781119067627
Edición
1

PART I
Introduction to Excel VBA

  • Chapter 1
    Essentials of Spreadsheet Application Development
  • Chapter 2
    Introducing Visual Basic for Applications
  • Chapter 3
    VBA Programming Fundamentals
  • Chapter 4
    Working with VBA Sub Procedures
  • Chapter 5
    Creating Function Procedures
  • Chapter 6
    Understanding Excel’s Events
  • Chapter 7
    VBA Programming Examples and Techniques

1
Essentials of Spreadsheet Application Development

In This Chapter
  • Discovering the basic steps involved in spreadsheet application development
  • Determining end users’ needs
  • Planning applications to meet users’ needs
  • Developing and testing your applications
  • Documenting your development efforts and writing user documentation

What Is a Spreadsheet Application?

For the purposes of this book, a spreadsheet application is a spreadsheet file (or group of related files) that is designed so that someone other than the developer can perform useful work without extensive training. According to this definition, most of the spreadsheet files that you’ve developed probably don’t qualify as spreadsheet applications. You may have dozens or hundreds of spreadsheet files on your hard drive, but it’s a safe bet that most of them aren’t designed for others to use.
A good spreadsheet application:
  • Enables the end user to perform a task that he or she probably would not be able to do otherwise.
  • Provides the appropriate solution to the problem. (A spreadsheet environment isn’t always the optimal approach.)
  • Accomplishes what it is supposed to do. This prerequisite may be obvious, but it’s not at all uncommon for applications to fail this test.
  • Produces accurate results and is free of bugs.
  • Uses appropriate and efficient methods and algorithms to accomplish its job.
  • Traps errors before the user is forced to deal with them.
  • Does not allow the user to delete or modify important components accidentally (or intentionally).
  • Has a clear and consistent user interface so that the user always knows how to proceed.
  • Has well-documented formulas, macros, and user interface elements that allow for subsequent changes, if necessary.
  • Is designed so that it can be modified in simple ways without making major changes. A basic fact is that a user’s needs change over time.
  • Has an easily accessible help system that provides useful information on at least the major procedures.
  • Is designed to be portable and to run on any system that has the proper software (in this case, a copy of the appropriate version of Excel).
It should come as no surprise that it is possible to create spreadsheet applications for many different usage levels, ranging from a simple fill-in-the-blank template to an extremely complex application that uses a custom interface and may not even look like a spreadsheet.

Steps for Application Development

There is no simple, surefire recipe for developing an effective spreadsheet application. Everyone has his or her own style for creating such applications. In addition, every project is different and, therefore, requires its own approach. Finally, the demands and technical expertise of the people you work with (or for) also play a role in how the development process proceeds.
Spreadsheet developers typically perform the following activities:
  • Determine the needs of the user(s)
  • Plan an application that meets these needs
  • Determine the most appropriate user interface
  • Create the spreadsheet, formulas, macros, and user interface
  • Test and debug the application
  • Attempt to make the application bulletproof
  • Make the application aesthetically appealing and intuitive
  • Document the development effort
  • Develop user documentation and Help systems
  • Distribute the application to the user
  • Update the application when necessary
Not all these steps are required for each application, and the order in which these activities are performed varies from project to project. We describe each of these activities in the pages that follow. For most of these items, we cover the technical details in subsequent chapters.

Determining User Needs

When you undertake a new Excel project, one of your first steps is to identify exactly what the end us...

Índice