Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have formulas all over my worksheet. I will, eventually, have many
worksheets that I will be merging. At that point, the formulas (vlookups, cell references, etc.) will no longer work. Is there a way to just put the answer in a cell instead of showing the formula? (similar to the "paste special....value" without having to copy and paste :-). |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
pmms, you could use a macro, here is one way,
Sub Remove_Formulas() 'Removes formulas on the active sheet and replaces them with valves With ActiveSheet.UsedRange .Copy .PasteSpecial Paste:=xlPasteValues End With Application.CutCopyMode = False End Sub -- Paul B Always backup your data before trying something new Please post any response to the newsgroups so others can benefit from it Feedback on answers is always appreciated! Using Excel 2002 & 2003 "pmms" wrote in message ... I have formulas all over my worksheet. I will, eventually, have many worksheets that I will be merging. At that point, the formulas (vlookups, cell references, etc.) will no longer work. Is there a way to just put the answer in a cell instead of showing the formula? (similar to the "paste special....value" without having to copy and paste :-). |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Works like a charm :-) Thanks sooo much!!
Paula "Paul B" wrote: pmms, you could use a macro, here is one way, Sub Remove_Formulas() 'Removes formulas on the active sheet and replaces them with valves With ActiveSheet.UsedRange .Copy .PasteSpecial Paste:=xlPasteValues End With Application.CutCopyMode = False End Sub -- Paul B Always backup your data before trying something new Please post any response to the newsgroups so others can benefit from it Feedback on answers is always appreciated! Using Excel 2002 & 2003 "pmms" wrote in message ... I have formulas all over my worksheet. I will, eventually, have many worksheets that I will be merging. At that point, the formulas (vlookups, cell references, etc.) will no longer work. Is there a way to just put the answer in a cell instead of showing the formula? (similar to the "paste special....value" without having to copy and paste :-). |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Your welcome, thanks for the feedback
-- Paul B Always backup your data before trying something new Please post any response to the newsgroups so others can benefit from it Feedback on answers is always appreciated! Using Excel 2002 & 2003 "pmms" wrote in message ... Works like a charm :-) Thanks sooo much!! Paula "Paul B" wrote: pmms, you could use a macro, here is one way, Sub Remove_Formulas() 'Removes formulas on the active sheet and replaces them with valves With ActiveSheet.UsedRange .Copy .PasteSpecial Paste:=xlPasteValues End With Application.CutCopyMode = False End Sub -- Paul B Always backup your data before trying something new Please post any response to the newsgroups so others can benefit from it Feedback on answers is always appreciated! Using Excel 2002 & 2003 "pmms" wrote in message ... I have formulas all over my worksheet. I will, eventually, have many worksheets that I will be merging. At that point, the formulas (vlookups, cell references, etc.) will no longer work. Is there a way to just put the answer in a cell instead of showing the formula? (similar to the "paste special....value" without having to copy and paste :-). |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
Custom functions calculating time arguments Help Desperate | Excel Worksheet Functions | |||
How to show the formula and the answer? | Excel Discussion (Misc queries) | |||
How to show the formula of another cell | Excel Worksheet Functions | |||
i edit a formula (excel) then it displays formula not answer | Excel Discussion (Misc queries) |