We can use Excel's Selection object (Range type containing selected cells of the active worksheet) and cycle through selected cells by using For-Each-Next loop:
For Each c in Selection
...
c.Value = ...
...
Next
c stands for single cell (Range type).
Following video clarifies this.
Tip: If you have difficulties to see the video, try to maximise it from lower right corner:
No comments:
Post a Comment