我有一个像这样的元素列表:
item name , date 1 , date 2
abc , 10/03/2020 , 16/03/2020
abc , 11/03/2020 , 15/03/2020
abc , 08/03/2020 , 15/03/2020
def , 07/03/2020 , 11/03/2020
xyz , 10/03/2020 , 11/03/2020
xyz , 12/03/2020 , 14/03/2020
我的目标是获得每个date 2
的{{1}}和date 1
之间的平均差。
例如,对于item name
,它应该为abc
。
5.67
我需要使用AVERAGE(16/03/2020-10/03/2020;15/03/2020-11/03/2020;15/03/2020-08/03/2020) = 5.67
函数吗?
感谢帮助。