Hi,
I never used this code, but this doesn't seem like a hard problem, so i tested this:
Last_Col = Cells.Find("*", SearchOrder:=xlByColumns, LookIn:=xlValues, SearchDirection:=xlNext).Column
Last_Row = Cells.Find("*", SearchOrder:=xlByRows, LookIn:=xlValues, SearchDirection:=xlNext).Row
Just change xlPrevious into xlNext, now it will find the first cell used.
-Max
|