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

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
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,215,679
Messages
6,126,182
Members
449,296
Latest member
tinneytwin

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