Replicating data from one sheet to another without extracting Formula

sneakyla

New Member
Joined
Aug 11, 2021
Messages
23
Office Version
  1. 2016
Platform
  1. Windows
Hello!

I don't know if such feature exist but I'm currently using a sheet to create a large list of data and importing it into a system to be read by column.

I've created an automated data sheet that I can easily use by copy and pasting a few steps. However, the main sheet that the system reads data from is collecting formula as a result instead of the value it presents. So my work around this is to just manually copy + special paste to another sheet without formula.

My question is, is there a way to have all the data in one sheet moved to another sheet without any formula inside automatically?

Thank you!
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Yes, you can do this with VBA. This code will copy the data from a completed worksheet to a new workbook as Values Only

VBA Code:
Sub CopyWorksheet()

ActiveSheet.Copy
Range(Range("A1"), Range("A1").SpecialCells(xlCellTypeLastCell)).Copy
Range("A1").PasteSpecial xlPasteValues

End Sub
 
Upvote 0

Forum statistics

Threads
1,216,140
Messages
6,129,105
Members
449,486
Latest member
malcolmlyle

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