Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have created a calendar whose default value I want to set as today in the time-stamp format "12:00:00 PM".
Here the calendar is taking value from a variable that i have defined as Variable1=today()
but default time-stamp is coming as AM only.
how to change this to PM?
Thanks in advance.
Because a date has a zero time value, which corresponds to a time of 12:00 AM (12 midnight)
12:00 PM has a time value of 0.5 and is 12 noon. If that's really what you want, add 0.5 to all the dates.
Because a date has a zero time value, which corresponds to a time of 12:00 AM (12 midnight)
12:00 PM has a time value of 0.5 and is 12 noon. If that's really what you want, add 0.5 to all the dates.
Thanks Jonathan