Supress, Hide or Remove #DIV/0! Suprimir, ocultar ou remover # DIV / 0! Error in Microsoft Office Excel Erro no Microsoft Office Excel

In Microsoft Excel or Microsoft Office Excel spreadsheet program, when a value is divided by zero (0) or a blank cell in the formula, the cell that displays the result will show the error value #DIV/0! as the result of the calculation. No Microsoft Excel ou o Microsoft Office Excel programa de planilha eletrônica, quando um valor é dividido por zero (0) ou uma célula em branco na fórmula, a célula que exibe o resultado vai mostrar o valor de erro # DIV / 0! Como o resultado do cálculo .

The error value may give wrong impression to readers especially when the workbook or worksheet is still in preparation. O valor de erro pode dar impressão errada aos leitores especialmente quando a pasta de trabalho ou planilha está ainda em preparação. And it’s not a professional or nice look when the same formula is applied to multiple cells by dragging or copying and all these rows or columns return an “#DIV/0!” error value. E isto não é um bom profissional ou de olhar quando a mesma fórmula é aplicada a várias células, arrastando ou copiando e todas essas linhas ou colunas um retorno "# DIV / 0!" Valor de erro.

The error value is valid though, as it’s impossible to divide any value with 0. O valor de erro é válida ainda que, como é impossível para dividir com todo o valor 0. However, it’s possible to suppress, hide or remove the #DIV/0! No entanto, é possível suprimir, ocultar ou remover o # DIV / 0! error value in the cell for unsupported or invalid division formula by using IF worksheet function. erro no valor da célula para não suportado ou inválido divisão fórmula usando IF planilha função.

To suppress #DIV/0 error value or keep #DIV/0! Para suprimir # DIV / 0 valor de erro ou de manter # DIV / 0! from appearing when there is an error, use the following formula in place of the standard division formula: de aparecer quando há um erro, use a seguinte fórmula em vigor da norma divisão fórmula:

=IF(denominator=0,"",numerator/denominator)

“Numerator” refers to the cell to be divided. "Numerador" refere-se a célula a ser dividida. “Denominator” refers to the cell that is the divisor. "Denominador" refere-se a célula que é o divisor.

For example, for formula of “A1/A2″ (cell A1 devided by cell A2), the formula to enter into the result cell is as below: Por exemplo, para a fórmula de «A1/A2" (célula A1 dividido por célula A2), a fórmula para entrar em resultado da célula é conforme abaixo:

=IF(A2=0,"",A1/A2)

The formula above checks to see if the denominator equals zero (or is blank); if so, a blank cell is displayed. A fórmula acima verifica se o denominador igual a zero (ou seja em branco) e, nesse caso, uma célula em branco é exibida. Otherwise, the cell that contains the function will display the result of the formula expression after calculating. Caso contrário, a célula que contém a função exibirá o resultado da fórmula de cálculo depois de expressão.

Note: To display other information in the cell if the divisor is blank or zero, type the necessary information in the formula where the quotation marks (”") appear. If you want to display text, type it between these quotation marks. If you want to display anything else (values), type it instead of the quotation marks. Observação: Para visualizar outras informações na célula se o divisor é nulo ou em branco, digite as informações necessárias na fórmula onde as aspas ( "") aparecerão. Se você quiser exibir texto, escreve-lo entre esses dentro de aspas. Se você quero mostrar mais alguma coisa (valores), escreva-as em vez de aspas.

Another IF worksheet formula that works utilizing the ISERROR condition. Outra SE planilha que funciona utilizando a fórmula ISERROR condição. The syntax for the formula portion is: A sintaxe para a porção fórmula é:

=IF(ISERROR(numerator/denominator),"",numerator/denominator)

For example, Por exemplo,

=IF(ISERROR(A1/A2),"",A1/A2)

Again, to display other information on the cell if the calculation result is erroneous, change the value of the middle parameter (text string requires quotation marks). Mais uma vez, para apresentar outras informações sobre a célula, se o cálculo resultado é errada, altere o valor médio do parâmetro (string texto requer aspas).

After entering the error handling formula as above, users can drag to copy the formula to apply to other cells, and the similar formula will be applied automatically. Depois de inserir a fórmula de erro manuseio acima, os usuários podem arrastar para copiar a fórmula que se aplica a outras células, bem como a fórmula semelhante será aplicado automaticamente.

IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Esta é uma máquina página traduzida que é fornecido "como está" sem garantia. Machine translation may be difficult to understand. A tradução automática pode ser difícil de entender. Please refer to Por favor referir-se original English article artigo original Inglês whenever possible. quando possível.

Share and contribute or get technical support and help at Compartilhe e contribuir ou obter assistência técnica e ajudar a My Digital Life Forums Minha vida digital Fóruns .



Leave a Reply Deixe uma Resposta

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> Você pode usar estas tags: <a href="" title="Avião"> <abbr title="Avião"> <acronym title="Avião"> <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q Cite=""> <strike> <strong>

Subscribe without commenting Subscrever sem comentar


Custom Search

New Articles Novos artigos

Incoming Search Terms for the Article Incoming Pesquisa Termos para o artigo

fix a #Div/0! fixar um # Div / 0! error in Excel erro no Excel - --