+ Reply to Thread
Results 1 to 10 of 10

Help with spread sheet (Hard to explain)

Hybrid View

  1. #1
    facebuddies
    Guest
    Thanks guys that works :-)


    Is it possible for some way to be able to instead of having to cut and paste manually a way where it can be done automaicly upto a line of 10,000 with a macro or something,

    Anyone help please

    :-)

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Hi,

    Just use the fill handle

    http://www.mvps.org/dmcritchie/excel/fillhand.htm

    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

  3. #3
    Forum Expert Carim's Avatar
    Join Date
    04-07-2006
    Posts
    4,070
    Hi again

    Sub Copy()
    Dim i As Integer
    For i = 1 To 10000
    Cells(i, 1).Select
    ActiveCell.Formula = "= ""FREE DOMAIN NAME ""&ROW()"
    Next i
    End Sub
    HTH
    Carim

  4. #4
    facebuddies
    Guest
    Thanks guys that has helped me great

    :-)

  5. #5
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    No problem

    Glad you got it sorted

    VBA Noob

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1