I have just been looking at some code behind an Excel card game simulation where all cell references were in the form:
[E1]=3, [H22]=65 etc which certainly simplifies the code. There was not a single instance of ‘Range(“E1”).value’ etc. Are there any drawbacks to using this method of cell referencing?
Regards