I have 2 sheets and one table for each.
The first sheet contains my table1 "Telephony map"
The Second sheet is my table2 "change history" (log changes to table1 "Telephony map")
I do not know the terms for asking the question so here is the situation.
Table2 is a copy of table1 but will be used for logging changes
1. I make a change to table1
2. gather the individual data for each cell in the selected row of table1
3. insert the data to table2
(Table1)
[Name] [phone] [office]
[bob] [345] [002]
[joe] [654] [004]
[sam] [123] [007]
lets make a change
bob and sam switch offices
using VBA I have three variables that hold each cell in the row from table1
***I want to insert this information into each cell in a new row in table2.
(Table2)
[date time] [Name] [phone] [office]
[stamp] [bob] [345] [007]
[stamp] [sam] [123] [002]
information has been logged. This information is helpful for looking up old offices and phone extensions, I have inherited a mess of spaghetti wires and am trying to keep it all organized.
***How do I do this? Am I making this too complicated?
If there are any questions please ask.
The first sheet contains my table1 "Telephony map"
The Second sheet is my table2 "change history" (log changes to table1 "Telephony map")
I do not know the terms for asking the question so here is the situation.
Table2 is a copy of table1 but will be used for logging changes
1. I make a change to table1
2. gather the individual data for each cell in the selected row of table1
3. insert the data to table2
(Table1)
[Name] [phone] [office]
[bob] [345] [002]
[joe] [654] [004]
[sam] [123] [007]
lets make a change
bob and sam switch offices
using VBA I have three variables that hold each cell in the row from table1
***I want to insert this information into each cell in a new row in table2.
(Table2)
[date time] [Name] [phone] [office]
[stamp] [bob] [345] [007]
[stamp] [sam] [123] [002]
information has been logged. This information is helpful for looking up old offices and phone extensions, I have inherited a mess of spaghetti wires and am trying to keep it all organized.
***How do I do this? Am I making this too complicated?
If there are any questions please ask.