I've pasted some of the code that leads up to the need for the number in the parentheses to remain as listed in the parentheses.
Selection.End(xlDown).Activate
Set Rng = ActiveCell
Rng.Name = "MonVal"
Sheets(Range("elcell").Value).Activate
Range("S2").Select
ActiveCell.FormulaR1C1 = "=ABS(MonVal)/R19C28*RC[-5]/(1+R20C28*RC[-17]/R19C28)"
ActiveCell.Copy
As you can see the cell at the bottom of a column of data is named "MonVal"
"MonVal" is used in a formula
I need a previous step to make certain that if "MonVal" has parentheses it is read as listed, not changed to negative. Even taking away the parentheses is okay.