I am trying to extract a month and year (separately) from a date control on a Nintex form. It's easy to do on the list and in the workflow but i need the data on the form itself at runtime. Any ideas how to accomplish?
Solved! Go to Solution.
month
formatDate(DateControl,"MM")
year
formatDate(DateControl,"yyyy")
View solution in original post