Code to filter datas and copy on cells

asyamonique

Well-known Member
Joined
Jan 29, 2008
Messages
1,280
Office Version
  1. 2013
Platform
  1. Windows
Code:
Private Sub CommandButton1_Click()
Dim LR As Long, i As Long
LR = Range("A" & Rows.Count).End(xlUp).Row
For i = 1 To LR
With Range("A" & i)
If .Text = Range("U1").Text Then
.Offset(, 1).Resize(, 5).Copy
Range("H" & Rows.Count).End(xlUp).Offset(1).PasteSpecial Paste:=xlPasteValues
End If
End With
Next i
End Sub
Good Day,
How can I update that code if the Source Range changed from Column A to C and then will put related column datas as given below?

H: A
I: B
J: D
K: E
 
Last edited:

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Try
Code:
Private Sub CommandButton1_Click()
   Dim LR As Long, i As Long
   LR = Range("C" & Rows.Count).End(xlUp).Row
   For i = 1 To LR
      With Range("C" & i)
         If .Text = Range("U1").Text Then
            Range("H" & Rows.Count).End(xlUp).Offset(1).Resize(, 2).Value = .Offset(, -2).Resize(, 2)
            Range("J" & Rows.Count).End(xlUp).Offset(1).Resize(, 2).Value = .Offset(, 1).Resize(, 2)
         End If
      End With
   Next i
End Sub
 
Upvote 0
Run this
Code:
Sub chk2()
MsgBox Evaluate("countif(C:C,U1)")
End Sub
What does the msgbox say?
 
Upvote 0
But nothing is going into cols H:K, is that right?
 
Upvote 0
What if you change this line as shown
Code:
 If .[COLOR=#ff0000]Value[/COLOR]= Range("U1").[COLOR=#ff0000]Value [/COLOR]Then
 
Upvote 0
Apologies, try this
Code:
Private Sub CommandButton1_Click()
   Dim LR As Long, i As Long
   LR = Range("C" & Rows.Count).End(xlUp).Row
   For i = 1 To LR
      With Range("C" & i)
         If .Value = Range("H1").Value Then
            Range("H" & Rows.Count).End(xlUp).Offset(1).Resize(, 2).Value = .Offset(, -2).Resize(, 2)[COLOR=#ff0000].Value[/COLOR]
            Range("J" & Rows.Count).End(xlUp).Offset(1).Resize(, 2).Value = .Offset(, 1).Resize(, 2)[COLOR=#ff0000].Value[/COLOR]
         End If
      End With
   Next i
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,876
Messages
6,127,482
Members
449,385
Latest member
KMGLarson

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