Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想计算许多值的总体标准偏差,而最后一个值每天都在变化。因此,我想指定从字段G21到列G中最后一个值的计算范围。
G21
G
我一直在尝试最新值的公式,这会返回错误。我尝试使用的公式是:
=STDEVP($G$21:(LOOKUP(9.99E+307,$G$22:$G1000)))
我怎么能这样做?
感谢您的任何意见。
试试这个:
=STDEVP($G$21:INDEX($G$22:$G1000,MATCH(9.99E+307,$G$22:$G1000)))