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.
输入是实时数据 (RTD) 函数。所以它不断变化。此外,有时该值保持不变,这意味着它不应包含在总和中。
随着时间的推移,单个单元 (A1) 中的 RTD 输入:100、30、40、40、40、30、30、190 等。输出 (B1):100+30+40+30+190= 390
试过这个=IF(CELL("address")="$V$97",V97+V98,V98) 它有效,但我如何摆脱重复值,因为我想忽略它们。
=IF(CELL("address")="$V$97",V97+V98,V98)
编写一个用户定义函数 (UDF),将最后接受的 RTD 值存储在一个变量中。将该变量与当前 RTD 值进行比较。如果它们不同,则使用新的 RTD 值更新变量并将其添加到您的输出中。