需要基本 IF 语句的公式

需要基本 IF 语句的公式

我正在为赛车活动编写一个基本的计分程序。我需要 excel 函数来使其基本如以下伪代码所示。

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

答案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)

相关内容