Reference to cells that meet a condition

fontmar

New Member
Joined
Nov 3, 2016
Messages
12
Hi,

I have the A column with 215 rows and each row can contain no value ("") or 1. I should select all rows with 1 and copy the 5 cells on the right on a different column.

So, for example, if the value 1 is in A5, A34, A55 and A89, I should copy B5:F5 in C1 (C1:G1), B34:F34 in C2 (C2:G2), B55:F55 in C3 (C3:G3), B89:F89 in C4 (C4:G4) and so on...

Somebody can help me?

Thanks
M
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Hi M,

You don't say where the destination C1:G1 (and the others) is, I assume it is on another sheet and I used Sheet4. You will need to change Sheet4 to your sheet name to suit the copy destination in your worksheet.

There are two macros, first one will work if there is NO other data in the columns H and beyond, otherwise that data will be copied also and you only want B to F.
The second macro assumes there IS data in column H and beyond and will only copy B to F and ignore the stuff in columns H and beyond. Also copies to Sheet4, so change the name here too.

Copy macros to a standard module and run from the sheet with the data on it.

Howard


Code:
Option Explicit

[B]'/ Use this macro if there is NO data beyond column F[/B]
Sub Vis_Cells_Copy()

With ActiveSheet

    If WorksheetFunction.CountIf(.Columns(1), 1) <> 0 Then
    
        .AutoFilterMode = False
        .Range("A1:A215").AutoFilter
        .Range("A1:A215").AutoFilter Field:=1, Criteria1:=1
        .UsedRange.SpecialCells(xlCellTypeVisible).Copy _
         Destination:=Sheet4.Range("C1")
        .AutoFilterMode = False
        Application.CutCopyMode = False
        
    End If
    
End With
End Sub



[B]'/ Use this macro if you have data beyond column F and you don't want it copied[/B]
Sub Vis_Cells_Copy_BF()

Dim lRow As Long

With ActiveSheet

lRow = Cells(Rows.Count, 2).End(xlUp).Row

    If WorksheetFunction.CountIf(.Columns(1), 1) <> 0 Then
    
        .AutoFilterMode = False
        .Range("A1:A215").AutoFilter
        .Range("A1:A215").AutoFilter Field:=1, Criteria1:=1
        .Range("B1:F" & lRow).Copy Destination:=Sheet4.Range("C1")
        .AutoFilterMode = False
        Application.CutCopyMode = False
        
    End If
    
End With
End Sub
 
Upvote 0
Hi Howard, it's me again (Marco).

I've tried to use the second macro - from B to F -, but it doesn't work. I have a Run.time error 1004, Application.defined or object-defined error.

Is there anything I'm doing wrong?
 
Upvote 0
Try this, does not copy the 1's in column A and only copies from B to F columns.

Howard


Code:
Option Explicit

Sub Cells_Copy_BF_No_A()

Dim lRow As Long

With ActiveSheet

lRow = Cells(Rows.Count, 2).End(xlUp).Row

    If WorksheetFunction.CountIf(.Columns(1), 1) <> 0 Then
    
        .AutoFilterMode = False
        .Range("A1:A215").AutoFilter
        .Range("A1:A215").AutoFilter Field:=1, Criteria1:=1
        .Range("B1:F" & lRow).Copy Destination:=Sheet2.Range("C1")
        .AutoFilterMode = False
        Application.CutCopyMode = False
        
    End If
    
End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,590
Messages
6,120,423
Members
448,961
Latest member
nzskater

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