On a PI4b in a LOcalc spreadsheet tracking stock I calculate a weekly average and put the date range in the top column, drawing from the dates in Monday's and Friday's quotes.
In bookworm and previously these basic statements:resulted in a cell with the data looking like "12/22 12/26/25"
After updating to trixie the same code gives me "12/22.2025 12/26/2025".
bookworm LO version is 7.4.7.2 while Trixie it's 25.2.3.2.
Posting on ask.libreoffice.org folks there are saying thet they don't see this on other OSs.
Is anybody here seeing this?
I'm trying to figure out if this an LO problem or a Debian one.
Thanks for any feedback,
Mike
In bookworm and previously these basic statements:
Code:
' date for weekly average monStr = cDate(cellRC(DateRow, wkAvgCol - daysInWeek).Value) ' typical 5 day week monStr = format( monStr, "M/D" ) ' 7/10 (/2017) friStr = cDate(cellRC(DateRow, wkAvgCol - 1).Value) friStr = format( friStr, "M/D/YY" ) cellRC(DateRow, wkAvgCol).String = monStr + " " + friStrAfter updating to trixie the same code gives me "12/22.2025 12/26/2025".
bookworm LO version is 7.4.7.2 while Trixie it's 25.2.3.2.
Posting on ask.libreoffice.org folks there are saying thet they don't see this on other OSs.
Is anybody here seeing this?
I'm trying to figure out if this an LO problem or a Debian one.
Thanks for any feedback,
Mike
Statistics: Posted by MikeMcClain46 — Sun Dec 28, 2025 5:50 am — Replies 1 — Views 59