Apple Event: May 7th at 7 am PT

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

wrong date in numbers

When I open a file in Numbers how some have write in Excell cant I see the date

I have try to change to date format, but it not helps.

Macbook pro, Mac OS X (10.6.4)

Posted on Dec 12, 2013 6:16 AM

Reply
17 replies

Jul 9, 2014 5:39 PM in response to Badunit

I get exactly the same performance as you describe above. Yesterday I inserted a new column adjacent to the date column in the xls database and inserted the formula you gave in an earlier post. That converted the dates correctly in Numbers 3.2 so that implies that the actual formatted date was there in the database but was being displayed wrong in 3.2. Try that with the test database I sent you. Open it in Numbers 3.2 and insert the data conversion in the next blank column. Adjust the cell number to reference the current date cells and bingo - Numbers 3.2 will do the conversion correctly.

Jul 10, 2014 7:22 PM in response to canalman

I used Text Wrangler to look at the original file and the Excel-saved file that I made. It is all gibberish to me but the two files were very different.


An Applescript might be useful for someone who doesn't have Excel around to fix the dates. There is probably a better way to do it that what I am going to post here but this is one way to do it. For all selected cells, it will first test that it contains a number then it will enter the conversion formula (except for the correction for the first 59 days of 1900), then it will replace the formula with the result.


tell application "Numbers" to tell the front document to tell active sheet to tell (first table whose class of selection range is range)

tell the selection range to repeat with i from 1 to count cells

tell cell i

try

if its value = (its value) / 1 then

set its value to "=\"1/1/1900\"+" & (its value) & " - 2"

set its value to (its value)

end if

end try

end tell

end repeat

end tell


And I just found another problem with this forum. I am unable to copy/paste a script's text from Applescript Editor into the forum, it justifies it off to the left side of the window. I had to "paste and match style". below is the result of copy/paste


tell application "Numbers" to tell the front document to tell active sheet to tell (first table whose class of selection range is range)

tell the selection range to repeat with i from 1 to count cells

tell cell i

try

if its value = (its value) / 1 then

set its value to "=\"1/1/1900\"+" & (its value) & " - 2"

set its value to (its value)

end if

end try

end tell

end repeat

end tell

wrong date in numbers

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.