I have a table with the following:
| A | B |
| blue | null |
| orange | null |
| orange | x |
| blue | y |
I would like to achieve this:
| A | B | C |
| blue | null | y |
| orange | null | x |
| orange | x | x |
| blue | y | y |
The only values that orange can take in column B are null or x, same for blue (null or y) Apologies if this has already been answered, I couldn't find it anywhere on the site.
Thanks
'orange', 'z'? Which value 'x' or 'z' do you want to show in theorangerow containingnull?