If 列之间的语句 Google 页
If statement between columns Google Sheets
您好,我正在尝试根据前一列中的 Y/N 将数学公式应用于列。我想将其应用于 sheet 中的一系列单元格。例如:
If column C = yes
column D = sum(A*B + (0.1*A*B))
else
column D = sum(A*B)
同样,我想将其应用于整个 sheet。此外,C 列是一个下拉列表是或否。
在 D2 尝试:
=INDEX(IF(C2:C="yes"; (A2:A*B2:B)+(0.1*A2:A*B2:B); A2:A*B2:B))
您好,我正在尝试根据前一列中的 Y/N 将数学公式应用于列。我想将其应用于 sheet 中的一系列单元格。例如:
If column C = yes
column D = sum(A*B + (0.1*A*B))
else
column D = sum(A*B)
同样,我想将其应用于整个 sheet。此外,C 列是一个下拉列表是或否。
在 D2 尝试:
=INDEX(IF(C2:C="yes"; (A2:A*B2:B)+(0.1*A2:A*B2:B); A2:A*B2:B))