Não atualiza a data na instrução IF usando TODAY ()

0

Estou usando o Excel 2010 e gostaria de obter a data atual usando uma instrução IF que NÃO atualiza toda vez que a planilha é aberta. Existe uma maneira de fazer isso com IF ou existe outra função?

    
por Kimberly Meyers 17.09.2018 / 07:21

2 respostas

5

Não. O ponto de TODAY() é obter a data do último recálculo. IF ou qualquer outra função também não ajudará porque não há nenhuma função que armazene a hora em que foi chamada e sempre retorna esse valor

Se você precisar inserir a data atual sem alterar, então você não deve usar uma função, ao invés disso, insira-a estaticamente com Ctrl + ; (ponto-e-vírgula). Similarmente para inserir NOW() sem mudar, use Ctrl + : (dois pontos)

Insert a static date or time into an Excel cell

A static value in a worksheet is one that doesn’t change when the worksheet is recalculated or opened. When you press a key combination such as Ctrl+; to insert the current date in a cell, Excel “takes a snapshot” of the current date and then inserts the date in the cell. Because that cell’s value doesn’t change, it’s considered static.

Insert a date or time whose value is updated

A date or time that updates when the worksheet is recalculated or the workbook is opened is considered “dynamic” instead of static. In a worksheet, the most common way to return a dynamic date or time in a cell is by using a worksheet function.

To insert the current date or time so that it is updatable, use the TODAY and NOW functions, as shown in the following example. For more information about how to use these functions, see TODAY function and NOW function.

Insert the current date and time in a cell

    
por 17.09.2018 / 07:24
0

Uma maneira que pode funcionar para você é usar uma referência circular e habilitar o cálculo iterativo.

  • Em Opções , selecione a guia Fórmulas e marque a opção Ativar iterativo cálculo opção.
  • Na célula B1 insira a fórmula: =IF(A1<>"",IF(B1="",TODAY(),B1),"") (retornará um espaço em branco)
  • Formate a célula como uma data.
  • Adicione um valor à célula A1 - o texto que diz "Data:" seria uma boa escolha.
    A data atual deve aparecer na célula B1 e não atualizar.

Desvantagens

  • A edição da fórmula será recalculada para 0 - ou 00/01/1900 no formato de data.
  • Remover o valor na célula A1 e adicioná-lo novamente irá recalcular a data.
  • Usuários

Iteration is the repeated recalculation of a worksheet until a specific numeric condition is met. Excel cannot automatically calculate a formula that refers to the cell — either directly or indirectly — that contains the formula. This is called a circular reference. If a formula refers back to one of its own cells, you must determine how many times the formula should recalculate. Circular references can iterate indefinitely. However, you can control the maximum number of iterations and the amount of acceptable change.
Change formula recalculation, iteration, or precision

    
por 19.09.2018 / 11:18