Date format bug?
Date format bug?
cross-posted from: https://lemmy.world/post/33569521
Does anyone know why the "render" of the data would be wrong? I changed it from the US format to the ISO 8601.
Edit: Adding some spaces in the equation helped.
Date format bug?
cross-posted from: https://lemmy.world/post/33569521
Does anyone know why the "render" of the data would be wrong? I changed it from the US format to the ISO 8601.
Edit: Adding some spaces in the equation helped.
Libre Office Version and OS?
I seemed to have solved my problem by adding spaces in the function as such
=func(x, y, z)
. It is not clear to me why that matters, but I guess.Me: Oh, I've been bitten by something like that in code, I bet it's a subtle timezone issue where applying the current timezone to the 00:00:00-timestamped
datetime
encoding of the date, and then truncating it back to the date only, winds up shifting...Me, after reading: What the FUCK, why