Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
can you tell me where its located
|
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Maybe you mean editfilldown or ctrl + d?
-- Regards, Peo Sjoblom "michael longo" wrote in message ... can you tell me where its located |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This macro should do what you want:
Sub Autofill2() Dim myR As Range Set myR = Cells(Rows.Count, 1).End(xlUp).Offset(-1, 0).Resize(2, 1) On Error Resume Next myR.AutoFill Destination:=Range _ (myR, myR.Offset(0, 1).End(xlDown).Offset(0, -1)) End Sub Alternatively: Sub FillDown() Range("A1").Select Selection.End(xlDown).Select Range(Selection, Selection.End(xlDown)).Select Selection.FillDown End Sub One more way: http://www.contextures.com/xlDataEntry02.html Regards, Ryan--- -- RyGuy "Peo Sjoblom" wrote: Maybe you mean editfilldown or ctrl + d? -- Regards, Peo Sjoblom "michael longo" wrote in message ... can you tell me where its located |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do I find the copy down function | Excel Worksheet Functions | |||
copy of excel file not showing formulal/function in the function b | Excel Discussion (Misc queries) | |||
function to find and copy data | Excel Worksheet Functions | |||
Find then copy | Excel Worksheet Functions | |||
Find and copy?? | Excel Worksheet Functions |