在 Google 表格中汇总日期

问题描述 投票:0回答:1

我正在尝试编写一个公式,对从预订日期起的前 365 个日期的付款列中的所有项目进行求和。

即单元格 D51 将对 C 列中 22/12/23 和 21/12/24 之间的所有项目求和

获得意想不到的结果。

链接可在此处获取。

https://docs.google.com/spreadsheets/d/1MyeyHMxxKDW6kNObYan--t-MKt-7p9-aIQRVtEp8nY8/edit?usp=sharing

谢谢。

google-sheets google-sheets-formula
1个回答
0
投票

要创建一个公式,对从“预订日期”(例如单元格 D100 中的日期)起过去 365 天内“付款”列(C 列)中的所有项目求和,您可以使用 Excel 中的 SUMIFS 函数。以下是构建公式的方法:

公式分解 求和范围:这是要求和的值所在的范围(C 列)。 标准范围 1:这是预订日期所在的范围(假设是 B 列)。

标准1:这是预订日期必须大于或等于单元格D100中的日期之前365天的条件。 标准范围 2:与预订日期所在的范围相同(B 列)。

标准2:这是预订日期必须小于或等于单元格D100中的日期的条件。 公式示例 假设:

B 列包含预订日期。 C 列包含支付金额。 D100 包含您想要对过去 365 天的支出求和的参考日期。 您可以在单元格 D100 中编写以下公式:

excel =SUMIFS(C:C, B:B, ">= & D100-365, B:B, "<=" & D100) Explanation

C:C 是您的支付金额所在的范围。 B:B 是您的预订日期所在的范围。 ">= & D100-365 检查大于或等于 D100 中日期之前 365 天的日期。 ”<=" & D100 checks for dates less than or equal to the date in D100. Common Issues Date Format: Ensure that the dates in Column B and the date in Cell D100 are formatted correctly as dates. Range References: Ensure that the ranges (C:C, B:B) are correct and refer to the columns where the relevant data is located. Cell References: Ensure that the formula is placed correctly and that references like D100 point to the cell with the booking date. If the formula still produces unexpected results, ensure that all dates in Column B are properly formatted and there are no empty or incorrect values that might skew the results.

© www.soinside.com 2019 - 2024. All rights reserved.