#488 in Computers & technology books
Use arrows to jump to the previous/next product

Reddit mentions of Excel 2013 Power Programming with VBA

Sentiment score: 5
Reddit mentions: 9

We found 9 Reddit mentions of Excel 2013 Power Programming with VBA. Here are the top ones.

Excel 2013 Power Programming with VBA
Buying options
View on Amazon.com
or
    Features:
  • John Wiley & Sons
Specs:
Height9.098407 Inches
Length7.299198 Inches
Number of items1
Weight3.14820110136 Pounds
Width2.499995 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 9 comments on Excel 2013 Power Programming with VBA:

u/ButterflyBloodlust · 8 pointsr/excel

I highly recommend Excel 2013 Power Programming with VBA. Newer versions have a different author, who I'm not familiar with. Walkenbach was pretty damn good with what he covered and how he covered it.

u/Enderthe3rd · 5 pointsr/vba

The two I keep on my desk:

Excel 2013 Power Programming with VBA by John Walkenbach

Professional Excel Development by Rob Bovey

The second one is more advanced, but indispensable if you want professional quality applications in VBA.

u/IamPanda31 · 3 pointsr/learnprogramming

So, here's my advice and basically how I learned what I did. I got a major in Finance in college, but I took Python and C++ classes (I also took a discrete class and an "IT" class that gave me some additional insight, but probably unnecessary). With that being said, I would learn basic Python first because debugging and learning algorithms is an absolute bitch in VBA. You don't need to learn additional libraries etc, just go through a basic online course and get through learning about Object Oriented Programming. From there it is much easier to transfer to VBA and learn the Excel object library. This guy: http://amzn.com/1118490398 is the best VBA programmer and is very well known. I mainly use the book as a reference when I'm going into an entirely new area and I search google for smaller questions Also, stop by /r/excel and feel free to PM me with any additional questions!

u/ionchunneler · 2 pointsr/Physics

Thank you! I used John Walkenbach's book on VBA programming. The click buttons are called Form Controls, and they link to macros that execute VBA code. It's pretty easy to pick up as there are lots of online examples.

u/PaulNissenson · 1 pointr/excel

There won't be any mandatory books for the course, but I will put on the syllabus that a good reference is John Walkenbach's "Excel 2013 Power Programming with VBA". I think this book is better for people who already have some experience in VBA since it is very thick an intimidating to the beginning.

http://www.amazon.com/Excel-2013-Power-Programming-VBA/dp/1118490398

u/NastyNate4 · 1 pointr/finance

I second the need for Excel and VBA. Then pick up more depending on what you actually end up doing. I advanced up the pay ladder by learning Access & SQL. VBA Resource I agree with your sentiment to just pick a project and start programming. I learned more from trial and error and stackoverflow threads than I did in any tutorial class or reference book.

u/CheesingmyBrainsOut · 1 pointr/excel

As long as you understand that VBA would be less efficient, and you'd be doing it for the experience.

I like to get fully immersed in topics so I'd recommend this book. It helped me get a solid introduction of most topics without getting too complex. You can get by with just googling functions but long term you'll want a more thorough introduction either with this book or an online resource. Also the contextuals (spelling?) and mrexcel sites are good iirc. And definitely stackoverflow.

With that being said, this is a pretty straight forward script, so it shouldn't give you that much trouble. If you have trouble feel free to post your sample script and I can make some suggestions. The best method to learning VBA is to just go at it and see what work. Google and stackoverflow are your friend.