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.
我对应该是一个非常简单的解决方案有疑问。
https://i.stack.imgur.com/QFTbm.jpg
如何在字段 C 中获取最新值 xyz 和 abc 。非常新的快速视觉。
可能有一个我可能不知道的简单解决方案。
如果您想要一个新的计算字段,其中每列(A、B 等)具有最新的 C 值,那么您可以按如下方式添加这些:
最新A
maxOver( ifelse( {Date} = maxOver({Date}, [A], PRE_FILTER), C, null ), [] PRE_FILTER )
最新B
maxOver( ifelse( {Date} = maxOver({Date}, [B], PRE_FILTER), C, null ), [] PRE_FILTER )
等等