Is it possible to autofill the current year in a field with the help of expression builder in forms?
Is it possible to autofill the current year in a field with the help of expression builder in forms?
In the field on the form where you want to see the date - type in:
Hope this helps!!Code:=Format(Date(),"yyyy")
You can also do:
=Year(Date())
Thank you for your response. I got it.