Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
range("L1").End(xlDown).Offset(2,0).Formula = ...
etc. -- HTH RP (remove nothere from the email address if mailing direct) "Michael Smith" wrote in message ... 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! |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Thank you both! *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Code to copy the formulae of one cell to all the cell in the rangewith the specific cell and columnnumber changing Options | Excel Discussion (Misc queries) | |||
Code to copy the formulae of one cell to all the cell in the rangewith the specific cell and columnnumber changing | Excel Discussion (Misc queries) | |||
Populate a cell if values in cell 1 and cell 2 match cell 3 and 4 | Excel Worksheet Functions | |||
How to create/run "cell A equals Cell B put Cell C info in Cell D | Excel Discussion (Misc queries) | |||
Question: Cell formula or macro to write result of one cell to another cell | Excel Programming |