NOTE: All of these are in my Z-drive
1. What macros did you create in VB?
With the time I had, I created a Months macro that enters the months of the year in a column (and edited it), a Message macro that makes a message box appear with the words “Hello World!”, a NameWorksheets macro that renames the first three worksheets in a workbook “2011”, “2012”, and “2013”, another naming macro that renames worksheets with the data in the A1 cell of every sheet (which I edited to include an If...Then condition to check if the value in cell A1 is empty, two comments that detail what’s going on, and a declaration for the variable I use to represent the worksheets), and a ChartExample macro that makes a chart appear with the data in a worksheet, and I also edited its style and type.
2. What challenges did you encounter?
This was refreshingly easy after a few increasingly challenging VB units, and the lessons were very simple to follow and well-paced. So instead of comprehension issues, most of my challenges came from technical problems, like when my first macro (Months) did not save correctly and kept calling up a workbook titled “Book1” instead of the correct “Sales.”
3. How did you solve them? Be specific
When it comes to solving technical problems, if the issue itself is not super clear (i.e. something is obviously misnamed or code was typed in incorrectly), it becomes a case of guess and check and trying different things. Going back to the Months issue I mentioned, I redid the entire macro, paying attention to saving everything correctly, and the second time around it worked fine.