Set date picker to first day of current year?

Hello all,

How do I set the date picker to default to the first day of the current year?

I've tried:

DATE("1/1/YEAR(TODAY())")

This shows as a valid expression but the date picker is blank when using it.

Thanks ๐Ÿ™‚

 

Solved Solved
1 6 974
1 ACCEPTED SOLUTION

Oh, gotcha.

Yah that expression won't work, because expressions don't evaluate if they are inside of quotations. You can try concatenating the values.

DATE("1/1/" & YEAR(TODAY()) )

The ampersand is shorthand for the CONCATENATE() expression.


View solution in original post

6 REPLIES 6
Top Labels in this Space