Forum Discussion
updating time field with choice of two times
Hi is it possible to add an auto updating time field in a word document that updates to show one of two specific times depending on the time the document is being written? EG to create a show report for a stage play about the specific show times?
If I am writing the show report at 5 pm for example, about the 2 pm show, it would auto update to show 2 pm, but if I was writing the report at 11 pm for the 730 pm show, it would show the time as 730 pm.
The following field construction will show 7:30 pm if the present time is later that 7 pm, otherwise, it will show 2 pm
{ IF { DATE \@ hh } > 19 "7:30 pm" "2 pm" }
You must use CTRL+F9 to insert each pair of field delimiters { } and ALT+F9 to toggle off their display and F9 to update the result.
4 Replies
The following field construction will show 7:30 pm if the present time is later that 7 pm, otherwise, it will show 2 pm
{ IF { DATE \@ hh } > 19 "7:30 pm" "2 pm" }
You must use CTRL+F9 to insert each pair of field delimiters { } and ALT+F9 to toggle off their display and F9 to update the result.- bootestCopper ContributorNever mind, I rubbed my brain cells together and figured it out myself. Thanks again!
- bootestCopper ContributorWhile we're on the subject is there a way to do the same thing with a set of time frames? Eg before 7 pm have it display 0900 -1700 and after seven display 1700 - 2300?
- bootestCopper ContributorThanks mate, that worked a charm!