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
Column1-(1/24)*Offset? – iDevlop Nov 30 '12 at 21:29