-6

Я пишу базовую программу для гонок. Мне нужна функция Excel в основном, чтобы сделать ее следующим псевдокодом.

=If cell B1 =1, then cell C1=5

1 ответ1

1

Вы ищете оператор IF в следующем формате:

IF(logical test,[result if true],[result if false])
*note that there does not necessarily have to be an outcome for false
(it will just list FALSE as the result if the result of the logical
test is not true or equal to the statement that you test for.)

Поэтому в вашем случае вы ищете:

=IF(B1=1,5)

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .