Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In a Sharepoint list, i have a date and time field and i want to create a calculated field that subtracts timezone offset from the date and time field (e.g. -6:00). My first attempt at formula was:

DATE(YEAR(Column1),MONTH(Column1),DAY(Column1),HOUR(Column1) – (1/24*offset))

But of course there is NO hour parameter in the DATE function. How would your correctly write this formula

share|improve this question
Have you tried simply Column1-(1/24)*Offset ? – iDevlop Nov 30 '12 at 21:29

closed as off topic by brettdj, djechlin, Cameron MacFarland, Firo, evilone Dec 1 '12 at 8:19

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 0 down vote accepted

In SharePoint, dates are stored as a number, the decimals being fractions of a day.

So this should work just fine:

=Column1-(1/24)*Offset

Remember to select date and time as your calculated column output type.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.