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.
我对电子表格、公式等不太擅长,所以要温柔;)我有一个年/月的日期列,我希望电子表格中的行数作为月份的函数输出,其中一个轴是月份,另一个轴是某些行在某些月份出现的频率。我总是可以只使用几个月的列,但我无法像那样格式化单元格。我正在寻找线性输出,例如正值的笛卡尔设置。其他选项是输出为带有月份和每月出现次数的单元格
这是你追求的那种东西吗?
公式:
月=RIGHT(A2,2)
=RIGHT(A2,2)
年=LEFT(A2,4)
=LEFT(A2,4)
月份名称=TEXT(DATE(C2,B2,1),"MMMM")
=TEXT(DATE(C2,B2,1),"MMMM")
几个月hard-coded
hard-coded
数数=COUNTIF($D$2:$D$20,G2)
=COUNTIF($D$2:$D$20,G2)
然后插入一个数据透视图,其中 Axis asMonths和 Values as Sum of Count。
Months
Sum of Count