How do I convert decimal dates into a format that shows the month and day?
I have tried the formulas given on the internet, but they do not work for me, and I can't figure out why.
=DATE(INT(A1),1,1)+MOD(A1,1)*365.25-1 gave 646481.
=DATE(INT(A1), 1, 1)+MOD(A1,1)*(DATE(INT(A1)+1, 1...