Sum Unique Values (Diff Row & Column ) from Different Sh

Kamal Subhani

Board Regular
Joined
Jan 26, 2004
Messages
146
Book1
ABCD
1ProductQuality1Quality3Quality4
2A101010
3B202010
4F301010
5E102030
Sheet1
Book1
ABCD
1ProductQuality3Quality2Quality5
2C101010
3D202010
4A301010
Sheet10
Book1
ABCDEF
1ProductQuality1Quality2Quality3Quality4Quality5
2A1040101010
3B20201000
4C01001010
5D02002010
6E10203000
7F30101000
Main



In actual I have more than 10 sheets.

In the main sheet the Unique Products and the Unique quality will be displayed with the help of the formula

In the main sheet the total of each product according to qualties should be dispalyed


Plz help.

I think u undertand my problem.
 
Re: Sum Unique Values (Diff Row & Column ) from Differen

Dear Juan Pablo González

Instead of helping a new bie in the excel and the forum my Topic Locked


Is It fair I started a new Topic Because one Board Master told me to do. He said that to many posts which make it difficult to read so start a new Thread .

thats why i started a new One

but thats locked

Still My Problem Not solved

I Think That if Aladin is available he is only one who will help me out



Reagrds and soory for posting Duplicate Juan Pablo González
 
Upvote 0

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Re: Sum Unique Values (Diff Row & Column ) from Differen

Do you want to try the Pivot Table approach?

Insert a worksheet at the beginning of your workbook. From the menu choose Data|Pivot Table and Pivot Chart Report. At Step 1 check Multiple consolidation ranges and click Next twice. At Step 2b, in the Range box click the tab of your first sheet, highlight the range containing your data and click Add. Click the tab for your second sheet, highlight the range containing your data and click Add again. Repeat this process for all your sheets and click Next. At Step 4 click Layout. Double click the Count of Value button, choose Sum and click OK twice. Then click Finish.

Job done! :)
 
Upvote 0
Re: Sum Unique Values (Diff Row & Column ) from Differen

TThnx for the help

Old problems not resolved

New problems started to arise and me totally confused now
I have given the extra range for the additinal data to be posted in the shhet1 and sheet2 when I am making the pivot Table blank columns and rows are comming . when I write in the addtitional colums and rows in the sheet1 and sheet 2 the data is not updated automatically and not sorted sorted in the pivot table sheet

How this can be done?
 
Upvote 0
Re: Sum Unique Values (Diff Row & Column ) from Differen

To hide the blanks click the down arrow to the right of the Row or Column button, uncheck (blank) and click OK. To update the Pivot Table for new data, right click the Pivot Table and choose Refresh Data.
 
Upvote 0
Re: Sum Unique Values (Diff Row & Column ) from Differen

Hi Andrew Poulsom

Thats the problem I am facing
I dont want manual updates

I want to do this automatically


So I think For me formula is the better approach


so Plz help me with the formua.
What the hell I am trying to explain ,People are not getting me what I am trying to tell them


I want like the Index match Univalues, threed combination to get the desired results.


:oops:
:oops:
 
Upvote 0
Re: Sum Unique Values (Diff Row & Column ) from Differen

Welcome to the world of Dbs, think of it as normalization.

Record a macro to refresh and call it on a change event. ;)
 
Upvote 0
Re: Sum Unique Values (Diff Row & Column ) from Differen

Actually it's not that difficult to automate the refresh. Right click the Excel icon to the left of File on the menu and choose View Code. Paste this code into the window on the right:

Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
    If Sh.Name = "Sheet1" Then Exit Sub
    Worksheets("Sheet1").PivotTables(1).RefreshTable
End Sub

Change "Sheet1" to the name of the sheet containing the Pivot Table. Prees Alt+F11 to return to your workbook.

Now the Pivot Table will be updated whenever you change somethig on your other sheets.
 
Upvote 0
Re: Sum Unique Values (Diff Row & Column ) from Differen

I dont want to show the Grandtotal across the column and the Row what should be done .

Plz help
 
Upvote 0
Re: Sum Unique Values (Diff Row & Column ) from Differen

The quality Headers are not in the ascending or the descending order.
Book1.xls
ABCDEFGHI
1Page1(All)
2
3SumofValueColumn
4RowQuality1Quality2Quality3Quality4Quality5Quality8Quality6GrandTotal
5A20201020101090
6B20201020101090
7C20201020101010100
8D20201020101010100
9E1010101040
10F1010101040
11GrandTotal10010040100404040460
Main1



Plz tell me what to do


in The Pivot Tables


:oops:

:oops:
 
Upvote 0
Re: Sum Unique Values (Diff Row & Column ) from Differen

Kamal Subhani said:
I dont want to show the Grandtotal across the column and the Row what should be done .

Plz help

Right click the Pivot Table and choose Table Options. Uncheck Grand totals for rows and columns and click OK.

For your sorting problem, right click the Column button and choose Field settings. Click Advanced, choose an Autosort option and click OK twice.
 
Upvote 0

Forum statistics

Threads
1,215,220
Messages
6,123,698
Members
449,117
Latest member
Aaagu

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