+ Reply to Thread
Results 1 to 3 of 3

List consolidation

Hybrid View

raza_m33hdy List consolidation 08-02-2017, 12:10 PM
Bernie Deitrick Re: List consolidation 08-02-2017, 04:27 PM
raza_m33hdy Re: List consolidation 08-03-2017, 04:46 AM
  1. #1
    Registered User
    Join Date
    03-24-2011
    Location
    Liverpool, England
    MS-Off Ver
    Excel 2007
    Posts
    37

    List consolidation

    Hi all,

    I am trying to create a macro that copies a list of products from sheet 1 (Master product list), copies the cost of each product from sheet 2 (input sheet) and pastes them to an existing list of products on sheet 3 (Output sheet).

    The list on sheet 3 is an expanding list and needs to only copy and paste products with costs against them. Here is a picture below to illustrate. The button on the second sheet needs to run the macro

    Picture1.jpg


    Any help with this much appreciated.

    Thanks in advance.
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: List consolidation

    Sub Button1_Click()
        Dim C As Range
        Dim shIn As Worksheet
        Dim shOut As Worksheet
        Dim V As Variant
        
        Set shOut = Worksheets("Output Sheet")
        Set shIn = Worksheets("Input Sheet")
        
        For Each C In shIn.Range("B:B").SpecialCells(xlCellTypeConstants, 1)
            V = Application.Match(shIn.Cells(C.Row, "A").Value, shOut.Range("A:A"), False)
            If IsError(V) Then
                With shOut.Cells(shOut.Rows.Count, "A").End(xlUp)
                    .Cells(2, 1).Value = C(1, 0).Value
                    .Cells(2, 2).Value = C.Value
                End With
            End If
        Next C
    End Sub
    Bernie Deitrick
    Excel MVP 2000-2010

  3. #3
    Registered User
    Join Date
    03-24-2011
    Location
    Liverpool, England
    MS-Off Ver
    Excel 2007
    Posts
    37

    Re: List consolidation

    Perfect, Thanks!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Consolidation Without Using A Function On Consolidation Screen
    By zanshin777 in forum Excel General
    Replies: 3
    Last Post: 12-27-2015, 03:35 AM
  2. [SOLVED] Consolidation several tabs' data into a consolidation sheet via a loop?
    By Gti182 in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 07-30-2015, 08:18 AM
  3. [SOLVED] List Separation/Consolidation
    By greenjl7 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 02-13-2015, 12:13 PM
  4. List Consolidation
    By Hodes101 in forum Excel General
    Replies: 1
    Last Post: 12-21-2011, 04:19 PM
  5. Build a consolidation list from array
    By ABSTRAKTUS in forum Excel General
    Replies: 3
    Last Post: 04-14-2011, 11:18 AM
  6. Data consolidation: List
    By SpringLily in forum Excel General
    Replies: 1
    Last Post: 02-24-2011, 09:55 AM
  7. List consolidation
    By TheRetroChief in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 05-12-2010, 01:31 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1