Вопрос задан 05.05.2019 в 13:07. Предмет Информатика. Спрашивает Казаков Сергей.

Построить таблицу F = не а и не b и не с

0 0
Перейти к ответам

Ответы на вопрос

Внимание! Ответы на вопросы дают живые люди. Они могут содержать ошибочную информацию, заблуждения, а также ответы могут быть сгенерированы нейросетями. Будьте внимательны. Если вы уверены, что ответ неверный, нажмите кнопку "Пожаловаться" под ответом.
Отвечает Кирилл Васильев.
См. фото ..........................................
0 0
Отвечает нейросеть ChatGpt. Будьте внимательны, ответы нейросети могут содержать ошибочные или выдуманные данные.

Building Table F

To build a table F where F is not equal to a, b, or c, you can use the following Excel formula:

```Excel =COUNTIF(range, "<>a") + COUNTIF(range, "<>b") + COUNTIF(range, "<>c") ``` This formula counts the occurrences of values in the specified range that are not equal to a, b, or c.

Example Usage

Suppose you have a range of cells A1:A10, and you want to count the occurrences of values in this range that are not equal to a, b, or c. You can use the formula:

```Excel =COUNTIF(A1:A10, "<>a") + COUNTIF(A1:A10, "<>b") + COUNTIF(A1:A10, "<>c") ```

This will give you the count of occurrences of values in the range A1:A10 that are not equal to a, b, or c.

Explanation

The formula `=COUNTIF(range, "<>a") + COUNTIF(range, "<>b") + COUNTIF(range, "<>c")` uses the COUNTIF function to count the occurrences of values in the specified range that are not equal to a, b, or c. The "<>" operator in the COUNTIF function means "not equal to".

This formula adds the counts of occurrences of values not equal to a, b, and c, providing the total count of values that do not match any of these specific criteria.

This approach allows you to efficiently count the occurrences of values in a range that do not match specific criteria.

I hope this helps! If you have further questions or need additional assistance, feel free to ask.

0 0

Топ вопросов за вчера в категории Информатика

Последние заданные вопросы в категории Информатика

Задать вопрос