Excel Filter a range of cells based on the cell contents, ie: min & max removal

K Wyman

New Member
Joined
Sep 12, 2018
Messages
2
Hello wizards,
I have a worksheet that has five data points entered for up to 15 different test locations on an item. I need to filter out the min and max value data point from each of the sets of five data points and retain the other three data points for each testing location (for hundreds of items). Those remaining three data points I can then use the Word Mail Merge function to auto fill in my report templates.

My question is: I do not know the best (read: "easiest") way to filter out the min and max value data points (that can appear anywhere within the set of five data points) so that Word Mail Merge can more easily find the three central data points from Excel to auto populate into my Word report template (that I sort of know what I'm doing there in Word).

For example, I have items, such as apples and oranges each has five data points:

itemd1d2d3d4d5
apples34825
oranges47152

<tbody>
</tbody>

All I can manage at this point is to use the Excel Conditional Formatting feature to visually identify which data points are the min and max from the set, which isn't really helpful for generating data to auto fill into a template in Word using the Mail Merge function.

itemd1d2d3d4d5
apples34825
oranges47152

<tbody>
</tbody>

How might I go about automatically filtering out the min and max values from a range of source data (ie: B2:F2) for each row (ie: B3:F3 and so on) so that I can have an area on a worksheet (in the same worksheet or a different one within the same workbook, which ever you think is easiest) that looks more like the below table so that the Word Mail Merge function can seamlessly pull the data from Excel into Word?

itemd1d2d3
apples345
oranges452

<tbody>
</tbody>

I did not include any particulars about the Word template or report that I'm using, because that (I think) would be TMI. Sufficient to say, the Word document will fill out one report for apples with the data values of 3, 4, and 5 and then one for oranges with 4, 5, and 2.

I thank you for your sage advice and your time.
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Hi & welcome to MrExcel.
How about
Code:
Sub MinMax()
   Dim i As Long
   
   For i = 2 To Range("A" & Rows.count).End(xlUp).Row
   With Range("B" & i).Resize(, 5)
      .Value = Evaluate(Replace("If(@=max(@),true,@)", "@", .Address))
      .Value = Evaluate(Replace("If(@=min(@),true,@)", "@", .Address))
      .SpecialCells(xlConstants, xlLogical).Delete xlToLeft
   End With
   Next i
End Sub
However if you have 2 min or max values the same, both of them will be removed.
 
Upvote 0
I do truly appreciate the code. My personal issue is getting it incorporated into my project. I'll keep working at that aspect of it. I'm assuming the "A" and "B" are row and column references.

Just a simpler question, is the supplied code above particular to any version of Excel? I am using Excel 2016, or more precisely the Professional Plus 2016 version.
 
Upvote 0
Both A & B are column references and the code should work on any version of Xl
 
Upvote 0

Forum statistics

Threads
1,215,481
Messages
6,125,057
Members
449,206
Latest member
Healthydogs

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