MixedUpExcel
Board Regular
- Joined
- Apr 7, 2015
- Messages
- 222
- Office Version
- 365
- Platform
- Windows
Hi,
Quick question as I just can't figure it out, please can someone show me how to convert the following into R1C1 format:
MyColumn in this case is where I have a cell selected - in this case I have selected a cell somewhere in Column A but in the future, I might select Column F or Z etc etc.
Thanks.
Quick question as I just can't figure it out, please can someone show me how to convert the following into R1C1 format:
MyColumn in this case is where I have a cell selected - in this case I have selected a cell somewhere in Column A but in the future, I might select Column F or Z etc etc.
Code:
With Range(Cells(2, MyColumn + 1), Cells(lr, MyColumn + 1))
.Formula = [B][COLOR=#b22222]"=IF(A2<>"""",""a"","""")"[/COLOR][/B]
.Value = .Value
End With
Thanks.