Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: tyantorno
  • Content: Threads
  • Order by date
  1. tyantorno

    VBA code to find a string in a specific column and copy the entire row to row below

    Hello, I am looking to write a VBA program to search a column for a particular string "Jeff" and when that string is found to copy the entire row to the row below on the same worksheet and highlight the font in red. Thank you in advance.
  2. tyantorno

    Beginner to VBA looking to copy and paste row whenever ";" found in column B. Thank you

    The code below does it for the first row found but does not look to any rows below that. I am assuming a loop? Thank you in advance Option Explicit Sub Macro2() Dim rngAddress As Range Dim rowToBeCopied As Integer Set rngAddress = Range("B:B").Find(";") If rngAddress Is Nothing Then...

Part and Inventory Search

Back
Top