Yellowdude
New Member
- Joined
- Mar 4, 2002
- Messages
- 20
Ive got a table and i want excel to automatically go through all the table untill it finds a blank cell and then add an x to the empty cell. Is there a formula that can do this or a macro?
On 2002-03-06 17:28, Autolycus wrote:
To MarkW
Here's some shorter code (no loop required) :-
Dim cell As Range
Set cell = [A1:J10].Find("", After:=[J10], SearchOrder:=xlByColumns)
cell.Value = "X"
On 2002-03-06 17:28, Autolycus wrote:
To MarkW
Here's some shorter code (no loop required) :-
Dim cell As Range
Set cell = [A1:J10].Find("", After:=[J10], SearchOrder:=xlByColumns)
cell.Value = "X"