I got 5 digit Julian date (I hope it is Julian date, I just got this data and need to work with it) in a Google Sheet (26933
) that I can convert to human readable form by clicking Format - Date
. So it becomes 26.09.1973
.
I found that I can do the same using Google Application Script when I use this code cells.setNumberFormat("d.M.yyyy");
but it changes the format of the sheet. How can I achieve the same only in memory not changing the sheet at all?