Mac Excel 2011: localize Itens em uma coluna que não estão em outra coluna

2

Olá, esta é uma repetição da pergunta: Encontrar itens em uma coluna que não estão em outra coluna

I have two columns in excel, and I want to find (preferably highlight) the items that are in column B, but not in column A.

What's the quickest way to do this?

No entanto, a resposta dada abaixo no tópico acima mencionado não se aplica mais ao Mac Excel 2011. Por exemplo: não há opção "nome-a-range" disponível no botão direito do mouse, etc. Portanto, estou perguntando isso novamente.

Select the list in column A Right-Click and select Name a Range... Enter "ColumnToSearch" Click cell C1 Enter this formula: =MATCH(B1,ColumnToSearch,0) Drag the formula down for all items in B If the formula fails to find a match, it will be marked #N/A, otherwise it will be a number.

If you'd like it to be TRUE for match and FALSE for no match, use this formula instead:

=IF(ISNA(MATCH(B1,ColumnToSearch,0)),FALSE,TRUE)

Como essa resposta deve ser reafirmada para se aplicar ao Mac Excel 2011?

    
por robert-jakobson 24.09.2012 / 14:22

2 respostas

0

O formato condicional da Coluna B com esta fórmula funciona para o Excel 2007 =ISNA(MATCH(B1,A:A,0)>0) .

    
por 24.09.2012 / 16:04
0

Por algum motivo, o Excel para Mac não possui o Gerenciador de nomes nem um botão na faixa de opções para definir um nome. A solução alternativa por esta página de ajuda do Office :

Go to your system preferences. In the Keyboard Preferences go to the Keyboard tab.

Check the box by Use All F1, F2, etc. keys as standard function keys.

Now open Excel. One a worksheet, press Command-F3

That may be the dialog you are looking for.

    
por 31.05.2015 / 06:21