Multiple tabulation

ExcelOrama

New Member
Joined
Nov 11, 2017
Messages
4
Howdy...Looking for tips to achieve multiple sums.

I have a list of criteria along with scores assigned to each criterion, which will be used in drop-down lists in another sheet.

Txt 1 for criterion 1
Text 2 for criterion 1
Txt 3 for criterion 1

<colgroup><col width="121"></colgroup><tbody>
</tbody>
Txt 1 for criterion 2

<colgroup><col width="121"></colgroup><tbody>
</tbody>
Txt 2 for criterion 2

<colgroup><col width="121"></colgroup><tbody>
</tbody>
Txt 3 for criterion 2

<colgroup><col width="121"></colgroup><tbody>
</tbody>
1
2
3
1
2
3

<tbody>
</tbody>


When users select each of the criterion in a separate sheet as provided by drop-down lists, I need to tally up the values as affiliated with each criterion. For instance, when user selects Txt 3 for criterion 1 along with Txt 2 for criterion 2 from the drop-downs, total value should add up to 5.

Any helpful suggestions are appreciated.

List of Criteria
Total Value
Txt 3 for criterion 1
Txt 2 for criterion 2
5

<tbody>
</tbody>


<colgroup><col><col><col span="7"></colgroup><tbody>
</tbody>
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Welcome to Mr Excel

Assuming the list of criteria is in Sheet1 A1:F2

Try

Sheet2

A
B
1
List of Criteria​
Total Value​
2
Txt 3 for criterion 1​
3
Txt 2 for criterion 2​
5​

Formula in B3
=SUMPRODUCT(SUMIF(Sheet1!$A$1:$F$1,A2:A3,Sheet1!$A$2:$F$2))

Hope this helps

M.
 
Upvote 0
Thanks for the reply...I'm afraid that didn't produce any results, even after applying the array function.
 
Upvote 0
As i said above, i assumed that the criteria are in Sheet1 in the range A1:F2. If this is not correct, the formula will not work.
You need to tell us the exact location of the criteria - worksheet name, rows and columns - and also on which cells are the drop-downs on the other worksheet.

M.
 
Upvote 0
Sheet 1
This is where the list of criteria with associated values reside.
ABCDEF
1Txt 1 for criterion 1Text 2 for criterion 1Txt 3 for criterion 1Txt 1 for criterion 2Txt 2 for criterion 2Txt 3 for criterion 2
2123123

<tbody>
</tbody>







Sheet 2
This sheet will use the values from sheet 1, which means users can select items dynamically. I lieu of drop-downs below, I've used examples to illustrate this. In these particular selections, total value should display 5.
AB
1List of CriteriaTotal Value
2Text 2 for criterion 1 (user has selected items in Sheet1!B2)<dropdown list="" with="" values="" populated="" from="" sheet1!a1:c3=""></dropdown>
3Txt 3 for criterion 2 (user has selected items in Sheet1!F2)<dropdown list="" with="" values="" populated="" from="" sheet1!d1:f3=""></dropdown>
5

<tbody>
</tbody>







Hope this is clear.
 
Upvote 0
The formula i suggested in post 2 should have worked. Repeating:
=SUMPRODUCT(SUMIF(Sheet1!$A$1:$F$1,A2:A3,Sheet1!$A$2:$F$2))

What happened:error, wrong result?

What exactly you meant by: (user has selected items in Sheet1!B2)

M.
 
Upvote 0

Forum statistics

Threads
1,215,737
Messages
6,126,576
Members
449,318
Latest member
Son Raphon

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