Hi!
I have this little macro as below:
It works for only one active cell. What if I want to select mutliple cells (e.g. A1, A13, A34, A130) and use a macro which converts functions already calculated in those cells into values?
Thanks for help!
I have this little macro as below:
Code:
Sub CopyValue()
ActiveCell.Value = ActiveCell.Value
ActiveCell.NumberFormat = ActiveCell.NumberFormat
End Sub
It works for only one active cell. What if I want to select mutliple cells (e.g. A1, A13, A34, A130) and use a macro which converts functions already calculated in those cells into values?
Thanks for help!