怎样能把这两个值设置为 当前年份的一月 和当前年份的十二月
在控件的控件值中设置如下公式
CONCATENATE(LEFT(TODAY(),4),"-01")
CONCATENATE(LEFT(TODAY(),4),"-12")
一月 CONCATENATE(year(today()),"-01")
十二月 CONCATENATE(year(today()),"-12")
当年
CONCATENATE(year(today()),'-01')
CONCATENATE(year(today()),'-12')
上年
CONCATENATE(year(today())-1,'-01')
CONCATENATE(year(today())-1,'-12')