Reputation: 3898
I am starting to use google spreadsheet to manage some dates for personal convenience and this formula for a cell returns me #ERRROR!
=IF(ISBLANK(C1), "Unknown datetime", C1 + 3/24)
Any idea what's wrong ?
I'm probably not setting things at the right place, here is a basic sample :
Upvotes: 0
Views: 85
Reputation: 868
Upvotes: 0
Reputation:
If you want to add 8 hours to A1, then add it as Time.
=IF(ISBLANK(A1), "Unknown datetime", A1 +time(8, 0, 0))
Upvotes: 2