Copy of worksheet is missing the data

PacVII

New Member
Joined
Jul 20, 2017
Messages
22
Office Version
  1. 365
Using 365 and trying to create a copy of a worksheet that has formulas within the cells. When i go to create a copy (to attach to an email) the worksheet looks as it should, then a second later the data with the formulas goes blank however the other fields that do not have formulas stays. The odd part, some of the fields that do have a formula will stay but most disappear. seems like it will keep some with a VLookUp but others with an index and match go away.

Any idea how to create a copy and keep the values showing? The odd part of this is i have another workbook and this works just fine. I can not figure out why its not working on this new workbook?

I am doing the same steps on each. Go to the tab with the sheet name, right click on the tab name and select Move or Copy, using 'to book' and 'new' . One sheet it works and the date stays the other it goes blank....
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
I think I found a work around:

OldWB.ActiveSheet.Cells.Select
Selection.Copy

NewWB.Activate
NewWB.ActiveSheet.Cells.Select

Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
Selection.PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
Selection.PasteSpecial Paste:=xlPasteValidation, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
 
Upvote 0

Forum statistics

Threads
1,215,087
Messages
6,123,046
Members
449,092
Latest member
ikke

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top