Last Cell

M

Michael Smith

I want to put a formula 2 rows below my last line of data, in the L,M,N
columns. Some kind of offset xlend thing?

TIA - mike



*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 
B

Bob Phillips

range("L1").End(xlDown).Offset(2,0).Formula = ...

etc.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
C

Cesar Zapata

are the data on all columns that same lenght? if so then try this

sub TestThis()
irows = Cells(Rows.Count, "L").End(xlUp).Row + 2
Cells(12, irows).Value = "hello"
Cells(13, irows).Value = "hello"
Cells(14, irows).Value = "hello"
End Sub


Cesar Zapata
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top