自上次订购以来的时间

自上次订购以来的时间

我需要查看公司过去 2 年的大量数据,并计算多次购买的用户自上次订购以来的时间。可以使用哪个 Excel 函数?用户 ID、日期等数据可用

答案1

Excel 和 Google Sheets 都有一个MAXIFS()功能,可以根据另一列中匹配的用户 ID 从一列中提取最新日期。


Excel 帮助页面

Google 表格帮助页面


两个程序中的函数格式相同。

MAXIFS(max_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...)

听起来你想要这样的东西:

MAXIFS([column with dates], [column with user ids], [cell with user id for this row])

这将为您提供当前用户的最新日期。然后您可以使用它来计算自上次订购以来的时间。我假设它看起来像这样:

=[cell with date for this row] - MAXIFS([column with dates], [column with user ids], [cell with user id for this row])

相关内容