我有3个COUNTIFS函数:
- 2023年1月
=COUNTIFS(Contact_Create_Date,">=1/1/2023",Contact_Create_Date,"<=1/31/2023",Contact_Lifecycle_Stage,"<>Other")
- 2023年2月
=COUNTIFS(Contact_Create_Date,">=2/1/2023",Contact_Create_Date,"<=2/28/2023",Contact_Lifecycle_Stage,"<>Other")
- 2023年3月
=COUNTIFS(Contact_Create_Date,">=3/1/2023",Contact_Create_Date,"<=3/31/2023",Contact_Lifecycle_Stage,"<>Other")
它们分别返回值:1117、396和0。
我有第四个COUNTIFS函数:
- 2023年第1季度
=COUNTIFS(Contact_Create_Date,">=1/1/2023",Contact_Create_Date,"<=3/31/2023",Contact_Lifecycle_Stage,"<>Other")
它返回值1597。
为什么给我1597而不是1513?Q1的函数不应该给我前3个函数的和吗?
我验证了Contact_Create_Date列中的日期格式是否正确。我完全搞不懂为什么这行不通。