+ Reply to Thread
Results 1 to 2 of 2

Macro to Copy value in a given destination cell

Hybrid View

urtzi Macro to Copy value in a... 05-09-2008, 11:59 AM
StephenR Try this: Sub x() Dim... 05-09-2008, 12:08 PM
  1. #1
    Registered User
    Join Date
    05-09-2008
    Posts
    1

    Macro to Copy value in a given destination cell

    Please I need some help on this one. Thanks!

    I have an spreadsheet with two colums, Column A and Column B:

    Column A Column B
    1000 G1
    2000 H21
    4000 F5
    6000 W10

    I want a macro that will copy the value in colum A (1000, 2000...) in the destination cells that are in column B (Cell G1, Cell H21, Cell F5, Cell W10...)

    So as a result, the values in colum A will move to the cells stated in Column B

    Thanks,
    Urtzi

  2. #2
    Forum Guru
    Join Date
    08-26-2007
    Location
    London
    Posts
    4,606
    Try this:
    Sub x()
    
    Dim rng As Range
    
    For Each rng In Range("A1", Range("A1").End(xlDown))
        Range(rng.Offset(, 1)) = rng
    Next rng
    
    End Sub

+ 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