Selecting a range with blank cells

Vincent paul

New Member
Joined
Oct 8, 2014
Messages
22
Hi,

I have a range with blank cells like this

Store nameItem 1Item 2Item 3
Store A234
Store B1
Store C11
Store D11

<tbody>
</tbody>









If blank cell is in between the range, code is not copying entire range.

Sub conc()
Dim myRow As Long
Dim storename As String
Dim myRange As Range
Dim cellrange As Range

Application.ScreenUpdating = False
Workbooks("E-shopaid Raw Data Jun'15.xlsx").Sheets("Comp").Activate
Range("A5").Select
Set myRange = Workbooks("E-shopaid Raw Data Jun'15.xlsx").Sheets("Comp").Range("A5")
Do Until myRange.Value = "Grand Total"
storename = myRange.Value
Set cellrange = Worksheets(storename).Range("B1")
If storename = cellrange Then
Range(myRange.Offset(0, 1), myRange.End(xlToRight)).Copy
ThisWorkbook.Activate
Worksheets(storename).Select
ActiveCell.PasteSpecial Paste:=xlPasteValues
Workbooks("E-shopaid Raw Data Jun'15.xlsx").Sheets("Comp").Activate
Set myRange = myRange.Offset(1, 0)
Else
MsgBox "Store name mismatch"
ActiveSheet.Next.Select
End If
Loop
End sub

Thanks..
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
I haven't looked at the rest of the code but try

Code:
Sub conc()
    Dim myRow As Long
    Dim storename As String
    Dim MyRange As Range
    Dim cellrange As Range

    Application.ScreenUpdating = False
    Workbooks("E-shopaid Raw Data Jun'15.xlsx").Sheets("Comp").Activate
    Range("A5").Select
    Set MyRange = Workbooks("E-shopaid Raw Data Jun'15.xlsx").Sheets("Comp").Range("A5")
    Do Until MyRange.Value = "Grand Total"
        storename = MyRange.Value
        Set cellrange = Worksheets(storename).Range("B1")
        If storename = cellrange Then
            [COLOR="#000080"]Range(MyRange.Offset(0, 1), Cells(MyRange.Row, Columns.Count).End(xlToLeft)).Copy[/COLOR]
            ThisWorkbook.Activate
            Worksheets(storename).Select
            ActiveCell.PasteSpecial Paste:=xlPasteValues
            Workbooks("E-shopaid Raw Data Jun'15.xlsx").Sheets("Comp").Activate
            Set MyRange = MyRange.Offset(1, 0)
        Else
            MsgBox "Store name mismatch"
            ActiveSheet.Next.Select
        End If
    Loop
End Sub
 
Upvote 0
Thanks for the reply Mark. It works fine.. but the issue is i have another set of data in adjacent columns.

Is there any other way to accomplish this..
 
Upvote 0
how do you decide where one range ends and the new one begins?
 
Upvote 0
3 things...

a) you have posted an image which cannot be copied in a usable form into Excel so if anyone wants to test the code they would have to retype the data. Most posters (myself included) won't do that and will more than likely just skip the thread. Please see my signature block for some ways to post a usable screenshot.

b) the image you posted doesn't even include the column labels so is of no use for trying to work out where one range ends and another starts (and I still want to know how you define it i.e. is the range always the same width (if yes why can't you hard code it as probably the empty cells after the last used cell aren't relevant (like in store B in your original post) as you don't have to resize the area it is being pasted into judging by the rest of the code you posted?)

c) your image looks like it is a pivot table. Is this correct?
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,517
Members
448,968
Latest member
Ajax40

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