dynamic list based on cell value

sedwardson

New Member
Joined
Mar 2, 2023
Messages
35
Office Version
  1. 365
Platform
  1. Windows
I have a column of names and another to show if they have had work done on their computer. If work has been completed there will be some text in the cell, if not it will be empty. I would like a list that shows the systems that are outstanding and when I put an x in the cell next to the persons name the dynamic list removes their name so I know who is left. I hope this makes sense.
The table would look something like this:

NameWork CompletedUsers Left
Person 1Computer and laptopPerson 2
Person 2Person 3
Person 3
Person 4x
Person 5x

Thanks for all and any help
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Which version of Excel are you using for this one? You have both 2021 and 365 listed.

Excel 365 has a new Filter function that would do this perfectly.
See: FILTER function - Microsoft Support.

However, even in the older versions of Excel, the old Filter functionality should give you what you want.
 
Upvote 0
Which version of Excel are you using for this one? You have both 2021 and 365 listed.

Excel 365 has a new Filter function that would do this perfectly.
See: FILTER function - Microsoft Support.

However, even in the older versions of Excel, the old Filter functionality should give you what you want.
Running 365, I'll see why it says both. Thanks for the link. I'll have a look and see where I get to :)
Sam
 
Upvote 0
1709215487198.png


Formula for cell D2:
Excel Formula:
=FILTER(A2:A6,B2:B6="")
 
Upvote 0
View attachment 107697

Formula for cell D2:
Excel Formula:
=FILTER(A2:A6,B2:B6="")
Hi @Joe4 , Thanks for the reply. That worked ! :) thank you. It has presented another issue though. I didn't take into account that there are some gaps in my Name column (For reasons I won't go into, these have to stay). The formula works but where there is a gap, it results in a "0". Is there a way for the formula to ignore blank cells? Sorry for the extension of the question !

Kind regards

Sam
 
Upvote 0
Just add another condition to check to see that column A is not blank, i.e.
Excel Formula:
=FILTER(A2:A6,(A2:A6<>"")*(B2:B6=""))
 
Last edited:
Upvote 0
Solution
You are welcome.
Glad I was able to help!
 
Upvote 0

Forum statistics

Threads
1,215,078
Messages
6,122,997
Members
449,093
Latest member
masterms

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