【发布时间】:2017-08-16 15:30:05
【问题描述】:
我有 6 个数据条目列和 1 个称为当前状态的列(我希望最新条目的数据在其中)。
我想要实现的是以下几点
"IF O2 is BLANK return T2, otherwise return 02;
IF T2 is BLANK return Y2, otherwise return T2;
IF Y2 is BLANK return AD2, otherwise return Y2;
IF AD2 is BLANK return AI2, otherwise return AD2;
IF AI2 is BLANK return AN2, otherwise return AI2;"
使用表格,它会随着时间的推移按时间顺序填写(第一个单元格 AN2,然后是 AI2,然后是 AD2,然后是 Y2,然后是 T2,然后是 02。但是,我希望当前状态列显示最新的进入。
这是我尝试使用的公式。
=IF(O2="",T2,IF(T2="",Y2,IF(Y2="",AD2,IF(AD2="",AI2,IF(AI2="",AN2,O2 )))))
谢谢!
【问题讨论】:
标签: excel if-statement google-sheets nested