Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default removing cell formulas

I have a worksheet with all cells containing formulas and their corresponding
values. I want to make a copy this worksheet in the same workbook with only
their values and without their formulas. Kindly advise
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 772
Default removing cell formulas

If i understand you correctly you can just hit CTL A to select all, copy, and
then use the option Paste Special and check the Values box on the new page
where you want the data.
--
-John
Please rate when your question is answered to help us and others know what
is helpful.


"Sanjiv" wrote:

I have a worksheet with all cells containing formulas and their corresponding
values. I want to make a copy this worksheet in the same workbook with only
their values and without their formulas. Kindly advise

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,501
Default removing cell formulas

Hi,

Ctrl+A
Ctrl+C
Edit|paste special|select values. OK

Mike

"Sanjiv" wrote:

I have a worksheet with all cells containing formulas and their corresponding
values. I want to make a copy this worksheet in the same workbook with only
their values and without their formulas. Kindly advise

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default removing cell formulas

Since you asked in programming:

activesheet.copy worksheets(worksheets.count)
with worksheets(worksheets.count)
.cells.copy
.cells.Pastespecial xlValues
End with

--
Regards,
Tom Ogilvy


"Sanjiv" wrote:

I have a worksheet with all cells containing formulas and their corresponding
values. I want to make a copy this worksheet in the same workbook with only
their values and without their formulas. Kindly advise

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 130
Default removing cell formulas

Sheets("Sheet2").range("A1:IV65000") =
Sheets("Sheet1").range("A1.IV65000").value

"Sanjiv" wrote:

I have a worksheet with all cells containing formulas and their corresponding
values. I want to make a copy this worksheet in the same workbook with only
their values and without their formulas. Kindly advise

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
REMOVING FORMULAS FARAZ QURESHI Excel Discussion (Misc queries) 2 February 3rd 09 01:21 PM
REMOVING WORKBOOK'S ALL FORMULAS FARAZ QURESHI Excel Discussion (Misc queries) 3 November 4th 08 11:08 AM
remove figures from a cell without removing the formulas signature Excel Worksheet Functions 4 September 14th 06 05:46 PM
Removing Links and Formulas Chaplain Doug Excel Programming 3 May 18th 06 04:10 PM
removing formulas JohnE Excel Programming 3 March 2nd 04 11:28 PM


All times are GMT +1. The time now is 05:09 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"