View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Robert Crandal[_2_] Robert Crandal[_2_] is offline
external usenet poster
 
Posts: 158
Default Question about "autocomplete"

The following two commands achieve the same result:

1) Sheet13.Cells(7, 6).Value = 1

or

2) Sheet13.Range("F7").Value = 1

If these two commands have the same result, why
does Excel's "autocomplete" feature in the text
editor only work with the second command?

Just curious....

Thanks