I have a small issue here. The I want to make only one cell reference edit in this macro, by changing the reference for rcell9-- in this case it is "F2". And I also want to avoid using .Activate. However I want rcell5 to be the value in the cell that rcell9 references. How can I program this differently?
Sub Noname()
Dim rcell5 As String, rcell9 As String
Dim MonthDays As Long
rcell9 = ("F2")
Range(rcell9).Activate
rcell5 = ActiveCell.Value
End Sub