+ Reply to Thread
Results 1 to 7 of 7

Recommend online beginner course to VB for Excel

  1. #1
    Registered User
    Join Date
    11-21-2014
    Location
    Brooklyn, NY
    MS-Off Ver
    2007
    Posts
    15

    Recommend online beginner course to VB for Excel

    Hi community,

    I find myself needing more and more to know how to write and edit Excel macros at work. I'm a bit overwhelmed about where to begin and was looking into online courses I could take. I found an 8-hour course on Udemy but was wondering if you guys have better recommendations. I'm proficient in Excel in-cell formulas but a total foreigner to reading, let alone writing and editing, Excel macros. Any advice would be greatly appreciated.

    Thanks.
    Daniel

  2. #2
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Recommend online beginner course to VB for Excel

    Hi

    If you are proficient in excel formulas

    then I would use the macro recorder to create you code.

    then learn how to use loops

    and a few standard lines of code and you will be off
    I have a macro in my personal workbook that writes all my most used code into excel
    so I don't have to remember them or look for them.

    Ok if you paste the attached code into your personal workbook and run the macro useful code

    it will generate a new sheet in the active workbook that will give you some ....................useful code.

    The first bits are examples on how to copy cells

    the second range gives you info on your active workbook

    the next area gives you info on the active work sheet

    Eg LR = Last used row in column 1. Change the 1 to a 2 to look at column 2
    LC = last used column in row 1 Change the 1 to a 2 to look at row 2

    The next area is my deOptimise subroutine which undoes my Optimise Subroutine
    The Optimise Subroutine turns off parts of the excel program to speed up processing
    however it will also switch of some of the macro events, so you need to run deoptimise.

    The final area shows you how to use Match, Instr and Find in VBA.

    Enjoy.


    Please Login or Register  to view this content.
    Last edited by mehmetcik; 07-01-2015 at 12:20 PM.
    My General Rules if you want my help. Not aimed at any person in particular:

    1. Please Make Requests not demands, none of us get paid here.

    2. Check back on your post regularly. I will not return to a post after 4 days.
    If it is not important to you then it definitely is not important to me.

  3. #3
    Valued Forum Contributor nigelbloomy's Avatar
    Join Date
    11-06-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    1,011

    Re: Recommend online beginner course to VB for Excel

    I liked this one for getting some basic ideas down: http://easyexcelvba.com/introduction.html
    Some people volunteer in soup kitchens or hospitals. I choose to make the world better by trying to help you with Excel. We're all learning.

    <---Click * Add Reputation for all helpful comments. It's like giving a smile.
    Forum Rules: How to mark your post [Solved] and have a happier, Excel enriched life.

  4. #4
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Recommend online beginner course to VB for Excel

    For clarity I am going to explain LOOPS and addressing separately

    You can Loop using the built in VBA for next subroutine.

    Eg:

    Please Login or Register  to view this content.
    You can always break out of the for next loop if you need to.

    Please Login or Register  to view this content.

    Sometimes it is simpler and safer to create your own for next functionality using Labels.

    Eg:

    Please Login or Register  to view this content.

  5. #5
    Registered User
    Join Date
    11-21-2014
    Location
    Brooklyn, NY
    MS-Off Ver
    2007
    Posts
    15

    Re: Recommend online beginner course to VB for Excel

    Thanks mehmetcik. I'm stuck on the next step.

    I'm creating a command button that I can click to initiate the action of selecting and copying a range of cells based on a conditional statement. The button is on a worksheet called "Buttons", but the action that needs to take place is in another worksheet called "Aggregate". For some reason, the button only works for the worksheet that it's on, and not if the action has to take place in the Aggregate worksheet. Below is the actual code I've written and the bolded line is the error line. When I add the "Agg." worksheet designation, it doesn't work, but when I remove it, essentially telling the action to run on the same worksheet that the button is on, it works fine, but I need it to run on the Aggregate worksheet. Can you help me further?

    Private Sub CommandButton9_Click()
    Dim Agg As Worksheet
    Dim LastRow As Integer
    Dim i As Integer

    Set Agg = Worksheets("Aggregate")
    LastRow = Agg.Range("A" & Rows.Count).End(xlUp).Row

    For i = 3 To LastRow
    If Agg.Range("A" & i).Value = "Bucket A - Missing Docs" Then
    Agg.Range("B" & i & ":O" & i).Select
    Selection.Copy
    End If
    Next i

    End Sub


    Thanks!

  6. #6
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: Recommend online beginner course to VB for Excel


  7. #7
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Recommend online beginner course to VB for Excel

    Sorry

    The server will not let me post here.

    PM on its way.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. recommend a course for excel
    By adam.dixon in forum Excel General
    Replies: 1
    Last Post: 10-12-2010, 06:34 PM
  2. Excel Books to recommend?
    By cmf0106 in forum Excel General
    Replies: 1
    Last Post: 11-10-2009, 12:57 PM
  3. Recommend the best free online resource for learning VB?
    By augy in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 10-13-2008, 03:20 PM
  4. [SOLVED] Could you recommend an Excel book?
    By Evgeny in forum Excel General
    Replies: 1
    Last Post: 02-08-2006, 01:10 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1