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! Go to 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.
User | Count |
---|---|
15 | |
11 | |
9 | |
8 | |
4 |