Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I want to remove formulas from certain cells but leave the data. How can I do
that using VBA? Thanks, Danny |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Same as you would manually: CopyPasteSpecial:Values
Turn on the Macro recorder, do it manually, turn off the recorder and adjust the resulting code for your situation. HTH, "Danny Crowell" wrote in message ... I want to remove formulas from certain cells but leave the data. How can I do that using VBA? Thanks, Danny |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
For Each cell In Selection
cell.Value = cell.Value Next cell -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Danny Crowell" wrote in message ... I want to remove formulas from certain cells but leave the data. How can I do that using VBA? Thanks, Danny |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I remove data in a row in excel without losing all data in | Excel Worksheet Functions | |||
remove zero from min formula | Excel Discussion (Misc queries) | |||
How do I remove data fields I do not need from data source? | Excel Programming | |||
remove " $ " from formula | Excel Worksheet Functions | |||
comparing lists of data to remove duplicate data | Excel Discussion (Misc queries) |