macro copy and paste in specific cells.

Alidad

New Member
Joined
Feb 24, 2019
Messages
1
Hi, I’m having trouble to figure out how to write that code. Let say that I have ten values on column “A” and each cell in column A have different values between column B to F of each row, and I want to copy each value between B to F to the DIFFERENTS CELL VALUE of any columns.
Currently, the codes you see, what does do is they find match value in column A and then copy same row and paste over another sheet.

see sample sheet:

A B C D
1 Blue 22 32 42
2 Green 45 65 75
3 Yellow 98 99 100
4 Red 55 65 75

see the real code

Code:
Sub Test()
 
Dim Cell As Range
 
With Sheets(1)
    ' loop column H untill last cell with value (not entire column)
    For Each Cell In .Range("A1:A" & .Cells(.Rows.Count, "A").End(xlDown).Row)
        If Cell.Value = "Yellow" Then
             .Rows(Cell.Row).Copy Destination:=Sheets(2).Rows(Cell.Row)
        End If
    Next Cell
End With
 
End Sub

Let say I look for Yellow in column A, and I want copy B3 value of 98 to sheet2 C5
Copy C3 value of 99 to sheet2 K4
Copy D3 copy value of 100 to sheet B5

How can I write that code!

many thanks.
AM
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Try this

Code:
Sub Test2()
    Set sh1 = Sheets("Sheet1")  'source
    Set sh2 = Sheets("Sheet2")  'Destination
    
    Set b = sh1.Columns("A").Find("Yellow", LookIn:=xlValues, lookat:=xlWhole)
    If Not b Is Nothing Then
        sh2.Range("C5").Value = sh1.Cells(b.Row, "B").Value
        sh2.Range("K4").Value = sh1.Cells(b.Row, "C").Value
        sh2.Range("B5").Value = sh1.Cells(b.Row, "D").Value
        MsgBox "Copied Data "
    Else
        MsgBox "The data does not exist"
    End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,047
Messages
6,122,858
Members
449,096
Latest member
Erald

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top