Hello,
I am trying to insert a variable number of rows into several tables, based on a dynamic value.
Here is a link to the file I am working with:
https://docs.google.com/file/d/0B-Bd0UJtnQ0RSVp3TjNZUjlRQkdWcjRhd2xJU3VpUQ/edit?pli=1
Each table is in a new tab (Blank, Blank1,Blank2...
I've been working on creating my own dynamic dashboards using the 4 part series on this site, and it has been going very well (Thank you!).
However, I have decided I want the ranges on my data to be dynamic as well, which this series does not cover. I have utilized several resources to help...
I am looking to write a macro that will copy a row of cells in Sheet 2 (Database) if the value in column B of 'Database' matches A1 in 'Sheet1'.
I have compiled the following incomplete macro:
Sub Stock()
Set i = Sheets("Sheet1").Range("A1")
Set e = Sheets("Database").Range(B)
Set f =...