Reputation: 3280
I have a datasheet like
... | dests | ...
----------------------
... | a, b, c | ...
... | a, b | ...
... | a | ...
... | a, d | ...
... | b | ...
and I want to convert it to the form
... | a | b | c | d |
-----------------------------------------
... | X | X | X | |
... | X | X | | |
... | X | | | |
... | X | | | X |
... | | X | | |
or have a filter like
dests
a
b
c
d
which I can use to select combinations of the possible dests
.
Is this possible? How would I do it?
Upvotes: 0
Views: 37
Reputation: 152585
You can do something like this:
=IF(ISNUMBER(SEARCH(C$1,$A1)),"X","")
Upvotes: 3