Determine the lowest value in a range of cells where the order is termined by an second range of cells

BVOPP

Board Regular
Joined
Feb 9, 2015
Messages
50
my excel sheet contains a lot of tasks (rows), in one column the status is maintained like (dropdowlist):
"", Open, Started, Closed etc...

One activity consists of a lot of these tasks, so i want to determine the lowest status of the task and assign that to the task.

For example

task 1 Open
task 2 Started
task 3 Closed
task 4 Started
Activity = Open

task 1 Started
task 2 Started
task 3 Closed
task 4 Started
Activity = Started

etc....

How can i simpliest do that in an xlsx. ???
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
You should be able to do it with this formula. Just change the ranges to match your needs.

=IF(IFERROR(MATCH("open",D13:D37,0),0)>0,"Open",IF(IFERROR(MATCH("started",D13:D37,0),0)>0,"Started",IF(IFERROR(MATCH("closed",D13:D37,0),0)>0,"Closed","")))
 
Upvote 0

Forum statistics

Threads
1,215,443
Messages
6,124,890
Members
449,194
Latest member
JayEggleton

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