-2

I tried almost everything that I could remember. I have some data like this in an Excel file:

Item 1  Item 2
A1       B1
A2       a2
A3       a3
B2  

I want to create a chart that updates constantly with spaces from A1 to G7 that will get this kind of result (kind of like in Battleship):

Spacing chart

Any idea how to do this?

0m3r
  • 12,286
  • 15
  • 35
  • 71
n4rs
  • 11
  • 5

1 Answers1

2

You could use a conditional formatting rule like:

=SUMPRODUCT(--EXACT($A2&B$1,Lookup!$A$2:$A$10))

with a fill colour of green, and another one

=SUMPRODUCT(--EXACT($A2&B$1,Lookup!$B$2:$B$10))

with a fill colour of orange.

enter image description here

Tom Sharpe
  • 30,727
  • 5
  • 24
  • 37