公式里面好像没有获取当前季度是第几季度的公式。我要怎么才能得到上个季度和上上个季度的值呢?比如上个季度是“第三季度”,上上个是“第二季度”
当前季度
roundup(month(today())/3,0)
上季度(月份减3)
roundup(month(monthdelta(today(),-3))/3,0)
上上季度(月份减6)
roundup(month(monthdelta(today(),-6))/3,0)