Measure column - summarization

dart73

New Member
Joined
Feb 22, 2019
Messages
1
Hello guys,






I have a matrix with some measure columns that creates some conditions. That´s the Delta_classification.






Delta_classification = if([DL_TPH_Delta]>0,5;"CRITICAL";if([DL_TPH_Delta]>0,3;"BAD";if([DL_TPH_Delta]>0,2;"REGULAR";if([DL_TPH_Delta]>0,1;"ACCEPTABLE";if([DL_TPH_Delta]>0,05;"GOOD";"EXCELLENT")))))


Now I want to summarize it by category CRITICAL, BAD, REGULAR, ACCEPTABLE, GOOD, EXCELLENT but as this is a measure I"m having trouble to do it. Could you kindly help me on this?!






BR
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Hi BR and welcome to the Forum

Firstly, sorry about how this looks - the result of dodgy copying & pasting from Excel!!! :mad:

Secondly, nesting so many IF functions together to return the appropriate classification is not good practice. A better option is a central lookup table like the following:
ABC
2Table Name: tblDeltaClass
3DL TPH DeltaClassification
4-Excelent
50.05Good
60.10Acceptable
70.20Regular
80.30Bad
90.50Critical
Table Name: tblData
C15 = VLOOKUP( B15, tblDeltaClass, 2, TRUE )
14IDDL TPH Delta
150.02Excelent
160.05Good
170.10Acceptable
180.20Regular
190.14Acceptable
200.24Regular
210.34Bad
220.54Critical
230.08Good
240.22Regular

<tbody>
</tbody>

<tbody>
</tbody>

Now, what do you mean by "summarise it by category"?

To COUNT the number of entries by category, set up another table like this:

Table Name: tblSummary
C30 = COUNTIFS( $C$15:$C$24, B30 )
29ClassificationCount
30Excelent1
31Good2
32Acceptable2
33Regular3
34Bad1
35Critical1
36Total10

<tbody>
</tbody>

Alternatively, if your data has a much greater number of entries, the better option may be to create a Pivot Table where you can choose any one of several measures, or perform full statistical analysis (standard deviations, etc.).
 
Upvote 0

Forum statistics

Threads
1,214,395
Messages
6,119,265
Members
448,881
Latest member
Faxgirl

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