I need the Forms field calculation that populates "MONTHDAYHOURMINUTESECOND" with a leading 0 on the "SECOND" variable; here is an example:
What I need: MONTHDAYHOURMINUTESECOND= (1029075203)
Here is the calculation that I currently have on the field:
=CONCATENATE(MONTH(NOW()), DAY(NOW()), HOUR(NOW()), MINUTE(NOW()), MINUTE(NOW()))
Which results in: 102975656 (The leading 0 in seconds is missing; it should be "06")
I tried changing the last variable to "SECOND", but that variable is not recognized:
=CONCATENATE(MONTH(NOW()), DAY(NOW()), HOUR(NOW()), MINUTE(NOW()), SECOND(NOW()))
Does Forms support the last "SECOND" variable with a leading "0"?