Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 15
Default Copy results and then remove formula

Is it possible to have a cell or range of cells on one worksheet refer back to a range of cells on another page, to copy the text in the second page and then remove the formula that performed this task?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 21
Default Copy results and then remove formula

Use a macro. Use the macro recorder to copy the values
across to the second sheet. Re-run the macro as needed.
If you want the macro to automatically update every time
you change the original worksheet, use the following
macro example:

Public Sub Auto_Open()

Worksheets("sheet1").OnEntry = "CopyValues"

end sub

Public Sub CopyValues()

Macrostuff that does the copying you need

end sub

The auto_open macro runs at the open of the workbook.
The OnEntry function calls the macro CopyValues every
time you change a cell value in sheet1 (you can refine
this by running it against a named range, also). Note:
the OnEntry function is /not/ triggered when values are
pasted into the worksheet. If you modify the data by
pasting it in, you'll have to manually trigger the macro.

Hope this helps

kpd

-----Original Message-----
Is it possible to have a cell or range of cells on one

worksheet refer back to a range of cells on another page,
to copy the text in the second page and then remove the
formula that performed this task?
.

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
Remove #n/a in vlookup to sum results duketter Excel Discussion (Misc queries) 6 September 15th 09 03:06 PM
How to copy 2007 excel file formula results into a 2003 Excel file Nuria Alba de Luz Excel Discussion (Misc queries) 2 July 10th 09 01:48 PM
Remove Negative Signs from Formula Results Holly Excel Worksheet Functions 4 January 15th 08 04:01 AM
I copy a formula and the results copy from the original cell brooklynsd Excel Discussion (Misc queries) 1 June 23rd 07 01:35 AM
copy avg results worduser Excel Discussion (Misc queries) 1 April 28th 06 08:14 PM


All times are GMT +1. The time now is 04:37 PM.

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

About Us

"It's about Microsoft Excel"