G Guest Jul 26, 2007 #1 Does anyone know the VBA code where for a range of date you want to program the macro to go to the next empty column or row?
Does anyone know the VBA code where for a range of date you want to program the macro to go to the next empty column or row?
G Guest Jul 27, 2007 #2 hi, From the end of row or column , use ' end ' fucntion to get the last filled cell and use offset to get the next cell like this one: by row sub test() range("A65536").end(xlup).offset(1,0)="Test" end sub try to run it several times.. to get the result...
hi, From the end of row or column , use ' end ' fucntion to get the last filled cell and use offset to get the next cell like this one: by row sub test() range("A65536").end(xlup).offset(1,0)="Test" end sub try to run it several times.. to get the result...