Here's what I have now.
We would like to darken the associated virtual bin if the cell on the list is highlighted.
Thanks.
We have two lists of numbers representing storage bins on a warehouse shelf.
We're trying to find a solution to easily identify all available, unassigned bins - to assign and store new items.
(List1) - ALL bins
(List2) - Bins already assigned
We have successfully created a conditional format on List1 (ALL) that highlights cells if they appear on List2 (already assigned).
There may be a simplier way of doing this, but we would like to create a graphical representation of ALL bins using columns & rows that will go dark (black) if already assigned or stay white (no color) if unassigned. We were thinking Conditional Formatting can accomplish this as it did on the list comparisons.
We would create a graphical matrix of columns & rows - and map each virtual bin to a cell on List1 (ALL). If that cell is highlighted (assigned) on the list, it would trigger and highlight the virtual bin on the matrix.
Would we score an adjacent cell next to each cell on list1 that would go high (1) if that bin was assigned or low (0) if available? Would we then map the matrix graph to the adjacent 1/0 cells and let Conditional Formatting do the rest. If scoring is the way to go, how do we do that?
Any help would be appreciated.
Thanks.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: byundtPosted on 2009-09-26 at 17:42:37ID: 25432242
You might try using a Conditional Formatting formula like:
=COUNTIF(List2,A1)>0 returns TRUE (colors cell black) if bin in cell A1 has been assigned
You don't need to use the adjacent cells for this purpose.
Brad