<ST_TimePeriod>
(Time Period Types)
Used in a "contains dates" conditional formatting rule. These are dynamic time periods, which change based on the date the conditional formatting is refreshed / applied.
This simple type's contents are a restriction of the XML Schema string datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
---|---|
|
A date in the last seven days. |
|
A date occuring in the last calendar month. |
|
A date occuring last week. |
|
A date occuring in the next calendar month. |
|
A date occuring next week. |
|
A date occuring in this calendar month. |
|
A date occuring this week. |
|
Today's date. |
|
Tomorrow's date. |
|
Yesterday's date. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_TimePeriod">
<restriction base="xsd:string">
<enumeration value="today"/>
<enumeration value="yesterday"/>
<enumeration value="tomorrow"/>
<enumeration value="last7Days"/>
<enumeration value="thisMonth"/>
<enumeration value="lastMonth"/>
<enumeration value="nextMonth"/>
<enumeration value="thisWeek"/>
<enumeration value="lastWeek"/>
<enumeration value="nextWeek"/>
</restriction>
</simpleType>