You can use a Derived Column where you use addHours
to adjust the timestamp to CST which is UTC-6 hours, so you would subtract 6 hours from the UTC timestamp.
addHours(currentTimestamp(), -6)
toTimestamp(addHours(currentTimestamp(), -6), 'yyyy-MM-dd HH:mm:ss')toTimestamp(addHours(currentTimestamp(), -6), 'yyyy-MM-dd HH:mm:ss')
If you need to handle daylight saving time, you would need to implement conditional logic to adjust the offset based on the current date.
iif(
(month(currentTimestamp()) == 3 && day(currentTimestamp()) >= 8 && dayOfWeek(currentTimestamp()) == 1 && hour(currentTimestamp()) >= 2) ||
(month(currentTimestamp()) == 11 && day(currentTimestamp()) < 8 && dayOfWeek(currentTimestamp()) == 1 && hour(currentTimestamp()) < 2),
addHours(currentTimestamp(), -5), // CDT
addHours(currentTimestamp(), -6) // CST
)