Results 1 to 12 of 12

Using a named range in VBA code

Threaded View

  1. #1
    Registered User
    Join Date
    02-25-2010
    Location
    Phoenix, Arizona
    MS-Off Ver
    Excel 2007
    Posts
    8

    Using a named range in VBA code

    I am trying to write a simply code to copy some formulas down to the last row of newly imported data. I have a UDF named Lastrow() that calculates the last row of the new data. The formula is in a cell named FinalRow.

    I have tried numerous ways of referencing the value of FinalRow with no luck. Below is my latest attempt that hopefully is clear enough that it completes the idea that I am working on.
    Sub CopyFormulas()
    
        Dim valFinalRow As Long
        valFinalRow = Range("Finalrow").Value
        ActiveSheet.Range("L2:M2").Copy Destination:=Range("l3:m" & valFinalRow)
        
    End Sub
    Any help is appreciated.
    Last edited by Paul; 02-25-2010 at 01:16 AM. Reason: Added code tags for user;

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