Suppose you have 2 Excel.Workbook variables wbA and wbB. The first variable is a workbook you have assigned with something like Excel.Workbooks.Open.
Now my Question: How can you assign wbA to wbB so that wbB is a copy of wbA and not just a reference to it?
I tried a simple wbB = wbA
but that just seems to reference wbB to wbA.
Many thanks!