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 derfloh 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: *

  1. alazar

    Copying of cells in a row from one sheet to another.

    Thanks for the help and insight. Just gotta ironout the quirks.
  2. alazar

    Copying of cells in a row from one sheet to another.

    @rustychef As I mentioned to SkipVought, I'm not a programmer and have very little knowledge in vba programming. The code that I pieced together thus far are from various snippets of code I found on the web. It's doing what I need, it may not be the cleanest but my supervisor just wants the...
  3. alazar

    Copying of cells in a row from one sheet to another.

    If I knew more about VBA then I'd know what you're talking about for MS Query. Anyways, I went about it another way and have it more or less doing what I need it to do but it seems to copy over the last row twice to the new sheet. Here's the code I have rewritten (forgive me I'm not a...
  4. alazar

    Copying of cells in a row from one sheet to another.

    Worksheet("Products") is a master product list that contains multiple families of products. The macro searches the first column of "Products" for a family match based on the initial 6 or 7 characters of the string and then copies certain columns based on a drop down. I need this to be...
  5. alazar

    Copying of cells in a row from one sheet to another.

    The code I have written below copies an entire row of cells from one worksheet to another but what I need to do is copy certain cells within the row to another worksheet. For RowIndex = 1 To 250 Set curCell = Worksheets("Products").Cells(RowIndex, 1) If Left(curCell, 6) = ProductFamily...

Part and Inventory Search

Back
Top