ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   How do change formula to permanent data? (https://www.excelbanter.com/excel-discussion-misc-queries/24190-how-do-change-formula-permanent-data.html)

Wendron Gordon

How do change formula to permanent data?
 
I have created a simulation and satisfied with its results but I can't
stopped excel from recalculating unchanged cells even if I only want it to
calculate new cells

Carole O

You can select all, copy, paste special, values...probably to a new
spreadsheet.

Carole O

"Wendron Gordon" wrote:

I have created a simulation and satisfied with its results but I can't
stopped excel from recalculating unchanged cells even if I only want it to
calculate new cells


Nigel

Hi,

i find that this works ok.

Sub lowercase()
Dim Oldv, Newv
Oldv = ActiveCell.Value
Newv = Format(Oldv, "< ")
ActiveCell.Value = Newv

it changes to lowercase though. not sure how to stop that but it does the
following.
select the cell containing the calculated formula
issue routrine and it changes.

If you can modify this not to change to lower case then please update me.

Nigel

"Carole O" wrote:

You can select all, copy, paste special, values...probably to a new
spreadsheet.

Carole O

"Wendron Gordon" wrote:

I have created a simulation and satisfied with its results but I can't
stopped excel from recalculating unchanged cells even if I only want it to
calculate new cells


Nigel

Hi again,

this should work:
Sub special()

Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False
Application.CutCopyMode = False
End Sub

select cell in question and run macro.

done.

Nige

"Nigel" wrote:

Hi,

i find that this works ok.

Sub lowercase()
Dim Oldv, Newv
Oldv = ActiveCell.Value
Newv = Format(Oldv, "< ")
ActiveCell.Value = Newv

it changes to lowercase though. not sure how to stop that but it does the
following.
select the cell containing the calculated formula
issue routrine and it changes.

If you can modify this not to change to lower case then please update me.

Nigel

"Carole O" wrote:

You can select all, copy, paste special, values...probably to a new
spreadsheet.

Carole O

"Wendron Gordon" wrote:

I have created a simulation and satisfied with its results but I can't
stopped excel from recalculating unchanged cells even if I only want it to
calculate new cells



All times are GMT +1. The time now is 08:50 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com