我想在单元格A2中使用一个公式来自动插入月到日期。(按降序排列)。只显示本月(9月)内的日期
例如,今天是9/2/2021。它将显示:9/2/20219/1/2021
假设我们进入第二天9/3/2021。它将显示:9/3/20219/2/20219/1/2021
https://docs.google.com/spreadsheets/d/1Rq7_yGZjXEqN84BIKmmZ0a8qlcPF2ZIgvdCD2aorGKc/edit?usp=sharing谢谢你的帮助。
根据B1
的日期在A2
中尝试此操作:
=arrayformula(sort((eomonth(B1,-1))+(sequence(B1-eomonth(B1,-1),1)),1,0))
或使用today()
:
=arrayformula(sort((eomonth(today(),-1))+(sequence(today()-eomonth(today(),-1),1)),1,0))