URGENT!! Need help and some advice/reference.

zeecharle

New Member
Joined
Aug 26, 2015
Messages
20
Hi, Good Day!

Can anyone help me in my excel work.

I Have 1 excel file that Has multiple worksheet. The first worksheet is my master worksheet/ the summary worksheet. and the other worksheet is the worksheet that contains multiple data that are in same format/template. I want to gather all of the data from the multiple worksheet to the master/summary worksheet.

I will consider the duplicate data in different worksheet and it should add the quantity of the duplicate data.

My workbook is an inventory workbook.

Thank you for helping and your time.

-Zee
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Hi Zee,
There's an inbuilt excel feature called Consolidate you can navigate to it by going into DATA - CONSOLIDATE.
You will have to select ranges from multiple formats (From your statement I'm assuming they have exactly the same structure ! )and add them together.
Used NamedRanges for your ranges in multiple worksheets its easier to track that way.

Hopefully it will yield the result you want !
 
Upvote 0
Hi Zee,
There's an inbuilt excel feature called Consolidate you can navigate to it by going into DATA - CONSOLIDATE.
You will have to select ranges from multiple formats (From your statement I'm assuming they have exactly the same structure ! )and add them together.
Used NamedRanges for your ranges in multiple worksheets its easier to track that way.

Hopefully it will yield the result you want !


Hi. Thanks for the attention and time for replying with my post.

I try that DATA - CONSOLIDATE, but I want to merge it all in the way that the master/summary worksheet format/template. I Have the template in the master/summary worksheet.

Can you help me? I'll send you my excel data.
 
Upvote 0
As it is a generic question have a look at the Ron de Bruin page in the link below (download the example workbook it will make your understanding easier)

Make sure you read Ron's instructions carefully


Ron's site
 
Last edited:
Upvote 0
Try the code below on a copy of your workbook. The code goes in a regular module

Rich (BB code):
Sub transferit()
    Dim ws As Worksheet
    Application.ScreenUpdating = False

    For Each ws In ActiveWorkbook.Worksheets
        If ws.Name <> "SUMMARY" Then

            With ws.Range("B8:F" & ws.Range("B" & Rows.Count).End(xlUp).Row)
                Sheets("SUMMARY").Range("B" & Rows.Count).End(xlUp).Offset(1).Resize(.Rows.Count, .Columns.Count).Value = .Value
            End With

        End If
    Next
    Application.ScreenUpdating = True

End Sub


BTW, it doesn't help to test when your sheets are identical :(
 
Last edited:
Upvote 0
Try the code below on a copy of your workbook. The code goes in a regular module

Rich (BB code):
Sub transferit()
    Dim ws As Worksheet
    Application.ScreenUpdating = False

    For Each ws In ActiveWorkbook.Worksheets
        If ws.Name <> "SUMMARY" Then

            With ws.Range("B8:F" & ws.Range("B" & Rows.Count).End(xlUp).Row)
                Sheets("SUMMARY").Range("B" & Rows.Count).End(xlUp).Offset(1).Resize(.Rows.Count, .Columns.Count).Value = .Value
            End With

        End If
    Next
    Application.ScreenUpdating = True

End Sub


BTW, it doesn't help to test when your sheets are identical :(


That my problem. It should be Added if it is identical. If it is duplicate it should be added all the duplicated quantity.

by the way, thanks again for information. I got some knowledge on it. thanks.
 
Upvote 0
That my problem. It should be Added if it is identical. If it is duplicate it should be added all the duplicated quantity.

Sorry but can you rephrase the statement above as it isn't making much sense to me or/and upload another sample with the SUMMARY filled out as you would expect the results to be.
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,399
Latest member
alchavar

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