B Bob Feb 16, 2004 #1 In my macro how can I select the last cell in B Column that has data in it? -- Thanks in advance for your help....Bob Vance .. .. .. ..
In my macro how can I select the last cell in B Column that has data in it? -- Thanks in advance for your help....Bob Vance .. .. .. ..
A Andy Brown Feb 16, 2004 #2 In my macro how can I select the last cell in B Column that has data in it? It depends on your version. Either Range("B65536").End(xlUp).Select or Range("B16384").End(xlUp).Select http://support.microsoft.com/default.aspx?scid=kb;en-us;148355 Rgds, Andy
In my macro how can I select the last cell in B Column that has data in it? It depends on your version. Either Range("B65536").End(xlUp).Select or Range("B16384").End(xlUp).Select http://support.microsoft.com/default.aspx?scid=kb;en-us;148355 Rgds, Andy