Copy one range to another but only for the blake cells in range

dee101

Active Member
Joined
Aug 21, 2004
Messages
282
Range1=Sheet1$F$17:$O$26
Range2 =Sheet2!$F$17:$O$26

I can copy Range1 to Range2 like this
Range("Range2").Value = Range("Range1").Value

But I only want to copy the values for the blank cells in Range2, so if some of the cells in Range2 had something in them they would not get the data form Range1 put in them.

What I think I need is something like copy the range but only for the blank cell in Range2?

Thanks
Excel 2013
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Try

Code:
Sub copydata()
Dim rng As Range
Set rng = Sheets("Sheet2").Range("F17:O26")
For Each cell In rng
cellrow = cell.Row
cellcol = cell.Column
    If cell = "" Then
        cell.Value = Sheets("Sheet1").Cells(cellrow, cellcol)
    End If

Next cell
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,236
Messages
6,170,915
Members
452,366
Latest member
TePunaBloke

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