Searching and Pulling from a Range VBA

HTMLGhozt

New Member
Joined
Jun 4, 2015
Messages
38
Hello,

I would say I'm relatively new to VBA in particular, and this site as well (it's my first post!).

I am working with Excel 2010.

I need help designing a macro to search a range (B, C in the case of the table below) and based on if a cell in the range has text (B1, B3, B5, B7, C1, C4, C5), for the macro to copy that cell and a cell from column A (A1 & B1, A1 & C1, A3 & B3, etc.) to paste into output in the order of column A then the other column.

ABCOutput
1John SmithNot PaidNot in Payroll SystemJohn Smith Not Paid
2James SmithJohn Smith Not in Payroll System
3Matthew SmithNot PaidMatthew Smith Not Paid
4Michelle PfeifferIs an actressMichelle Pfeiffer Is an actress
5HTMLGhoztNot PaidIs me!HTMLGhozt Not Paid
6Stacy KeiblerHTMLGhozt Is me!
7Apples GaloreIs ApplesApples Galore Is Apples

<tbody>
</tbody>

If you have any questions please ask!
 
Last edited:

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
HTMLGhozt,

Here is a macro solution for you to consider, that uses two arrays in memory, and, runs in the active worksheet.

Sample raw data:


Excel 2007
ABCD
1John SmithNot PaidNot in Payroll System
2James Smith
3Matthew SmithNot Paid
4Michelle PfeifferIs an actress
5HTMLGhoztNot PaidIs me!
6Stacy Keibler
7Apples GaloreIs Apples
8
9
Sheet1


After the macro:


Excel 2007
ABCD
1John SmithNot PaidNot in Payroll SystemJohn Smith Not Paid
2James SmithJohn Smith Not in Payroll System
3Matthew SmithNot PaidMatthew Smith Not Paid
4Michelle PfeifferIs an actressMichelle Pfeiffer Is an actress
5HTMLGhoztNot PaidIs me!HTMLGhozt Not Paid
6Stacy KeiblerHTMLGhozt Is me!
7Apples GaloreIs ApplesApples Galore Is Apples
8
9
Sheet1


Please TEST this FIRST in a COPY of your workbook (always make a backup copy before trying new code, you never know what you might lose).

1. Copy the below code
2. Open your NEW workbook
3. Press the keys ALT + F11 to open the Visual Basic Editor
4. Press the keys ALT + I to activate the Insert menu
5. Press M to insert a Standard Module
6. Where the cursor is flashing, paste the code
7. Press the keys ALT + Q to exit the Editor, and return to Excel
8. To run the macro from Excel press ALT + F8 to display the Run Macro Dialog. Double Click the macro's name to Run it.

Code:
Sub ReorgData()
' hiker95, 06/04/2015, ME859228
Dim a As Variant, o As Variant
Dim i As Long, j As Long, n As Long, c As Long
Application.ScreenUpdating = False
With ActiveSheet
  a = .Range("A1:C" & .Cells(Rows.Count, 1).End(xlUp).Row)
  n = Application.CountA(.Range("B1:C" & UBound(a, 1)))
  ReDim o(1 To n + 1, 1 To 1)
  For i = 1 To UBound(a, 1)
    For c = 2 To UBound(a, 2)
      If Not a(i, c) = vbEmpty Then
        j = j + 1: o(j, 1) = a(i, 1) & " " & a(i, c)
      End If
    Next c
  Next i
  .Columns(4).ClearContents
  .Cells(1, 4).Resize(UBound(o, 1), UBound(o, 2)) = o
  .Columns(4).AutoFit
End With
End Sub

Before you use the macro with Excel 2007 or newer, save your workbook, Save As, a macro enabled workbook with the file extension .xlsm, and, answer the "do you want to enable macros" question as "yes" or "OK" (depending on the button label for your version of Excel) the next time you open your workbook.

Then run the ReorgData macro.
 
Last edited:
Upvote 0
I attempted to use the code reworking what I could see for what I need it for, I received: "run-time error '9': Subscript out of range". When attempting to debug it highlights specifically j = j + 1: o(j, 1) = a(i, 1) & " " & a(i, c) This. perhaps it's an issue of columns. I am pulling info from columns "S" through "X", with "T" through "X" being my errors. Here's my code verbatim
Code:
Sub ReorgData()
' hiker95, 06/04/2015, ME859228
Dim a As Variant, o As Variant
Dim i As Long, j As Long, n As Long, c As Long
Application.ScreenUpdating = False
With ActiveSheet
  a = .Range("S4:X" & .Cells(Rows.Count, 1).End(xlUp).Row)
  n = Application.CountA(.Range("T4:X" & UBound(a, 1)))
  ReDim o(1 To n + 1, 1 To 1)
  For i = 1 To UBound(a, 1)
    For c = 2 To UBound(a, 2)
      If Not a(i, c) = vbEmpty Then
        j = j + 1: o(j, 1) = a(i, 1) & " " & a(i, c)
      End If
    Next c
  Next i
  .Columns(4).ClearContents
  .Cells(1, 4).Resize(UBound(o, 1), UBound(o, 2)) = o
  .Columns(4).AutoFit
End With
End Sub
 
Upvote 0
HTMLGhozt,

I attempted to use the code reworking what I could see for what I need it for, I received: "run-time error '9': Subscript out of range". When attempting to debug it highlights specifically j = j + 1: o(j, 1) = a(i, 1) & " " & a(i, c) This. perhaps it's an issue of columns. I am pulling info from columns "S" through "X", with "T" through "X" being my errors. Here's my code verbatim

The macro that I wrote was based on your posted raw data in columns A, B, and, C, and, the results in column D.

It is always best to display your actual raw data worksheet(s), and, the results that you are looking for. This way we can usually find a solution on the first go.

So that I can get it right on the next try, and, in order to continue I will have to see your actual raw data workbook/worksheet(s), and, what the results should look like (manually formatted by you).

You can upload your workbook to (the BLUE link-->) Box Net ,
sensitive data changed
mark the workbook for sharing
and provide us with a link to your workbook.

If you are not able to provide the above, then:

Click on the Reply to Thread button, and just put the word BUMP in the thread. Then, click on the Post Quick Reply button, and someone else will assist you.
 
Upvote 0
Member NamesMember Not listedFamily Not listedDate IncorrectEnrollment IncorrectMember Not listed 2Member Names 2Output
John SmithIsn't ListedIsn't Listed 2Joh SmithJohn Smith Isn't Listed
James SmithFam Not ListedAlphie SmithJohn Smith Isn't listed 2
Alphie SmithDate MismatchEnrollment MismatchTraci SmithJames Smith Fam Not listed
Traci SmithIsn't Listed 2James S.Alphie Smith Date Mismatch
Alphie Smith Enrollment Mismatch
James S. Isn't Listed 2

<tbody>
</tbody>

I am limited to some things; however, here's a conspicuously similar (same amount of rows, same things I need it to do, same order) mock version. The columns are from S to Z. I am working with VBA on the Excel 2010, Please let me know if you need anything else. I can range from four members to 500.
 
Last edited:
Upvote 0
I managed to get it working by playing around some, I'm sure there's something that it won't do or at some time it may malfunction, but here's the code I have. You sir, are brilliant!

Code:
Sub ReorgData()
' hiker95, 06/04/2015, ME859228
Dim a As Variant, o As Variant
Dim i As Long, j As Long, n As Long, c As Long
Application.ScreenUpdating = False
With ActiveSheet
  a = .Range("S4:X" & .Cells(Rows.Count, 1).End(xlUp).Row)
  n = Application.CountA(.Range("T4:X" & UBound(a, 1)))
  ReDim o(1 To n + 1, 1 To 1)
  For i = 1 To UBound(a, 1)
    For c = 2 To UBound(a, 2)
      If Not a(i, c) = vbEmpty Then
        j = j + 1: o(j, 1) = a(i, 1) & " " & a(i, c)
      End If
    Next c
  Next i
  .Columns(8).ClearContents
  .Cells(4, 26).Resize(UBound(o, 1), UBound(o, 2)) = o
  .Columns(8).AutoFit
End With
End Sub
 
Upvote 0
HTMLGhozt,

I managed to get it working by playing around some

It is always best to display your actual raw data worksheet(s), and, the results that you are looking for. This way we can usually find a solution on the first go.

Glad that you were able to adjust the macro to work correctly with your actual raw data structure.

You sir, are brilliant!

Thanks for the feedback.

You are very welcome. Glad I could help.

And, come back anytime.
 
Upvote 0
HTMLGhozt,

Here is another macro for you to consider, based on the new raw data structure, and, results, and, based on the macro you updated/modified.

Sample raw data, and, results:


Excel 2007
STUVWXYZ
1
2
3Member NamesMember Not listedFamily Not listedDate IncorrectEnrollment IncorrectMember Not listed 2Member Names 2Output
4John SmithIsn't ListedIsn't Listed 2Joh SmithJohn Smith Isn't Listed
5James SmithFam Not ListedAlphie SmithJohn Smith Isn't Listed 2
6Alphie SmithDate MismatchEnrollment MismatchTraci SmithJames Smith Fam Not Listed
7Traci SmithIsn't Listed 2James S.Alphie Smith Date Mismatch
8Alphie Smith Enrollment Mismatch
9Traci Smith Isn't Listed 2
10
Sheet1


Please TEST this FIRST in a COPY of your workbook (always make a backup copy before trying new code, you never know what you might lose).

Code:
Sub ReorgDataV2()
' hiker95, 06/08/2015, ME859228
Dim a As Variant, o As Variant
Dim i As Long, j As Long, lr As Long, n As Long, c As Long
Application.ScreenUpdating = False
With ActiveSheet
  .Range("Z3:Z" & .Cells(Rows.Count, "Z").End(xlDown).Row).ClearContents
  lr = .Cells(Rows.Count, "S").End(xlUp).Row
  a = .Range("S4:X" & lr)
  n = Application.CountA(.Range("T4:X" & lr))
  ReDim o(1 To n, 1 To 1)
  For i = 1 To UBound(a, 1)
    For c = 2 To UBound(a, 2)
      If Not a(i, c) = vbEmpty Then
        j = j + 1: o(j, 1) = a(i, 1) & " " & a(i, c)
      End If
    Next c
  Next i
  .Cells(3, 26).Value = "Output"
  .Cells(4, 26).Resize(UBound(o, 1), UBound(o, 2)) = o
  .Columns(26).AutoFit
End With
End Sub

Before you use the macro with Excel 2007 or newer, save your workbook, Save As, a macro enabled workbook with the file extension .xlsm, and, answer the "do you want to enable macros" question as "yes" or "OK" (depending on the button label for your version of Excel) the next time you open your workbook.

Then run the ReorgDataV2 macro.
 
Upvote 0

Forum statistics

Threads
1,215,456
Messages
6,124,939
Members
449,197
Latest member
k_bs

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