G Guest Jun 5, 2007 #1 I want to remove formulas from certain cells but leave the data. How can I do that using VBA? Thanks, Danny
I want to remove formulas from certain cells but leave the data. How can I do that using VBA? Thanks, Danny
G George Nicholson Jun 5, 2007 #2 Same as you would manually: Copy>PasteSpecial:Values Turn on the Macro recorder, do it manually, turn off the recorder and adjust the resulting code for your situation. HTH,
Same as you would manually: Copy>PasteSpecial:Values Turn on the Macro recorder, do it manually, turn off the recorder and adjust the resulting code for your situation. HTH,
B Bob Phillips Jun 5, 2007 #3 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)
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)