Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda Validating Data Consistency | Remoção de Duplicatas e Erros
Limpar Dados no Excel

Validating Data Consistency

Deslize para mostrar o menu

After cleaning duplicates, fixing formats, and highlighting errors, the final step is to make sure that your data is logically consistent.

Data consistency means that values across different columns make sense when compared to each other. Even if each column looks correct on its own, the relationship between columns can still be wrong.

Let's look at a simple example:

At first glance, everything looks fine. But if you think about it, there is a problem.

If 2 phones cost 800, then 1 phone should not also cost 800. This indicates that one of the values is incorrect.

How to Validate Consistency

The idea is to compare related columns and check if they follow expected rules.

For example, you might expect:

  • Total = Quantity × Price;
  • Values to stay within a realistic range;
  • Consistent relationships across rows.

You can use simple formulas to verify this logic.

How It Works

You create a formula that checks whether the relationship between columns is correct.

For example:

=IF(B2*C2=D2, "OK", "Error")

This formula checks whether the total matches the calculation. If it does, it returns OK; if not, it flags the row as an Error.

Task

Create a new column called Validation.

Write a formula that calculates the price per item by dividing Total by Quantity. If the price of one item exceeds 2000, mark it as "Error", otherwise mark it as "OK".

Apply the formula to all rows.

Note
Hint

Use a formula that divides Total by Quantity and checks if the result is greater than 2000, for example: =IF(E2/D2>2000;"Error";"OK").

question mark

What does data consistency mean?

Selecione a resposta correta

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 4. Capítulo 4

Pergunte à IA

expand

Pergunte à IA

ChatGPT

Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo

Validating Data Consistency

After cleaning duplicates, fixing formats, and highlighting errors, the final step is to make sure that your data is logically consistent.

Data consistency means that values across different columns make sense when compared to each other. Even if each column looks correct on its own, the relationship between columns can still be wrong.

Let's look at a simple example:

At first glance, everything looks fine. But if you think about it, there is a problem.

If 2 phones cost 800, then 1 phone should not also cost 800. This indicates that one of the values is incorrect.

How to Validate Consistency

The idea is to compare related columns and check if they follow expected rules.

For example, you might expect:

  • Total = Quantity × Price;
  • Values to stay within a realistic range;
  • Consistent relationships across rows.

You can use simple formulas to verify this logic.

How It Works

You create a formula that checks whether the relationship between columns is correct.

For example:

=IF(B2*C2=D2, "OK", "Error")

This formula checks whether the total matches the calculation. If it does, it returns OK; if not, it flags the row as an Error.

Task

Create a new column called Validation.

Write a formula that calculates the price per item by dividing Total by Quantity. If the price of one item exceeds 2000, mark it as "Error", otherwise mark it as "OK".

Apply the formula to all rows.

Note
Hint

Use a formula that divides Total by Quantity and checks if the result is greater than 2000, for example: =IF(E2/D2>2000;"Error";"OK").

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 4. Capítulo 4
some-alt