Hi to all and thanks in advance for your effort to help me
I have a problem. I am a basic user of VBA and it is difficult for me to find a solution on the following issue:
I have two excel files than contain same structure data in columns.
The first xlslx file is the master file with the name "Practice". Lets say that has sheets named "TODO", "DONE", "FUTURE", "PAST".
The second xlslx file is the child with the name "Practice55". Lets say that has sheets named "TODO", "FUTURE", "TODAY", "TOMORROW"
So, I want to keep an excel file (I don't care if it is new or the new data will be added to the existing one) which will keep the master's excel name, which means "Practice" by:
A) keeping all it's sheets ("TODO", "DONE", "FUTURE", "PAST")
B) adding the unique (not common named) sheets that "Practice55" has ("TODAY", "TOMORROW") and
C) every time that finds common named sheets (in this particular situation "TODO", "FUTURE"), to add the data of the child file's sheet ("Practice55") into the last empty row of the master file -in this particular situation "Practice".
At the end of the day the new (or not new) file will have the name "Practice" and it will contain the following sheets:
"TODO" (by adding and the data of Practice55's "TODO")
"DONE"
"FUTURE" (by adding and the data of Practice55's "FUTURE")
"PAST"
"TODAY"
"TOMORROW"
Can anyone help me on tis please?
Thanks in advance
I have a problem. I am a basic user of VBA and it is difficult for me to find a solution on the following issue:
I have two excel files than contain same structure data in columns.
The first xlslx file is the master file with the name "Practice". Lets say that has sheets named "TODO", "DONE", "FUTURE", "PAST".
The second xlslx file is the child with the name "Practice55". Lets say that has sheets named "TODO", "FUTURE", "TODAY", "TOMORROW"
So, I want to keep an excel file (I don't care if it is new or the new data will be added to the existing one) which will keep the master's excel name, which means "Practice" by:
A) keeping all it's sheets ("TODO", "DONE", "FUTURE", "PAST")
B) adding the unique (not common named) sheets that "Practice55" has ("TODAY", "TOMORROW") and
C) every time that finds common named sheets (in this particular situation "TODO", "FUTURE"), to add the data of the child file's sheet ("Practice55") into the last empty row of the master file -in this particular situation "Practice".
At the end of the day the new (or not new) file will have the name "Practice" and it will contain the following sheets:
"TODO" (by adding and the data of Practice55's "TODO")
"DONE"
"FUTURE" (by adding and the data of Practice55's "FUTURE")
"PAST"
"TODAY"
"TOMORROW"
Can anyone help me on tis please?
Thanks in advance