Date - Time Component in UI Builder - Minimum Year that can be selected is 1975Summary<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } In ServiceNow's UI Builder, the Date-Time Interval component does not provide a built-in configuration option to set the minimum selectable year in the year dropdown. By default, the earliest year available is typically around 1970 or 1975. This limitation stems from the component's reliance on JavaScript's Date object, which is optimized for dates starting from the Unix epoch (January 1, 1970). Currently, there are no exposed properties in the UI Builder interface to modify the starting year of the year dropdown in the Date-Time Interval component. Therefore, to enable selection of years as early as 1930, you would need to implement a custom solution. One approach is to create a custom date picker component that allows for a broader range of years. This can be achieved by: 1. Utilizing a Custom UI Component: Develop a custom component using ServiceNow's UI Framework that includes a date picker with configurable year ranges. 2. Integrating Third-Party Libraries: Incorporate a third-party date picker library that supports extensive year ranges and integrate it into your custom component. 3. Binding to Data Resources: Ensure that your custom component is properly bound to the necessary data resources within UI Builder to maintain functionality and data integrity. Please note that implementing a custom solution requires a good understanding of ServiceNow's UI Framework and may involve additional development effort. For more detailed guidance on creating custom components and integrating third-party libraries, you can refer to ServiceNow's developer documentation and community forums. Related Links<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } You may want to consider posting this issue to our community where professionals, such as yourself, gather to exchange ideas and solutions. Here is a link that will take you to our community: http://community.servicenow.com