MrKowz
Well-known Member
- Joined
- Jun 30, 2008
- Messages
- 6,653
- Office Version
- 365
- 2016
- Platform
- Windows
Throughout my "research" at work, I browse through Excel help files and come across some really strange examples that are in there.
For example:
In the EntireColumn Property help file, they have:
</PRE>
I'm thinking to myself, "Thats odd, Cells(1, ActiveCell.Column).Value = 5 seems more clean/effecient. Why not use an example like ActiveCell.EntireColumn.Copy?"
Anything else any of you have run across that strikes you as odd or COMPLETELY ineffecient?
</PRE>
For example:
In the EntireColumn Property help file, they have:
Code:
[B]Example[/B]
This example sets the value of the first cell in the column that contains the active cell. The example must be run from a worksheet.
<CODE>ActiveCell.[B]EntireColumn[/B].Cells(1, 1).Value = 5</CODE>
I'm thinking to myself, "Thats odd, Cells(1, ActiveCell.Column).Value = 5 seems more clean/effecient. Why not use an example like ActiveCell.EntireColumn.Copy?"
Anything else any of you have run across that strikes you as odd or COMPLETELY ineffecient?
</PRE>