Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default how do I find the copy down function

can you tell me where its located
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default how do I find the copy down function

Maybe you mean editfilldown or ctrl + d?


--


Regards,


Peo Sjoblom


"michael longo" wrote in message
...
can you tell me where its located



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,836
Default how do I find the copy down function

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how do I find the copy down function michael longo Excel Worksheet Functions 0 November 7th 07 03:29 PM
copy of excel file not showing formulal/function in the function b oaallam Excel Discussion (Misc queries) 4 September 6th 07 01:20 PM
function to find and copy data Carpe Diem Excel Worksheet Functions 1 August 2nd 07 06:55 PM
Find then copy Vegs Excel Worksheet Functions 6 June 21st 06 03:49 PM
Find and copy?? L/P Excel Worksheet Functions 1 January 14th 05 06:29 PM


All times are GMT +1. The time now is 04:24 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"