Why can't I change the date format in my documents?

Good Morning.  I submitted this question yesterday to the iMac forum but no one could help me.  It should  be a very simple thing to do but it escapes me.
Using 'Insert Date' brings up the long date format i.e.  Tuesday April 16 2013.  I prefer the short format 16.04.13.
I have tried to change this by going through the procedure System Preferences > Date Time.  The default format in that window is the one I want but it does not appear in my Pages or Numbers documents.  I then tried Systems Preferences > language and Text > Region > Customise I made sure I was in the correct region and selected the short date format.  Still get the long format in the documents.  I can edit this on the fly by right clicking the date but the next time I use 'insert date'  it reverts to the long format.  Now I'm the first to admit I am probably missing something really simple but could somebody plesae point out to me what it is 'cos it's driving me mad.
Wilf

Hi Wilfred,
Three issues here.
1. Setting the short and long dates in System Preferences. See fruhulda's answer: Copy and paste to shift the dates position. [Nice one, fruhulda!]
2. Locking those changes in (restart your computer). See Jerry's first answer.
3. However I do not get that window that you show where it saysset to today and gives you those options which you can tick. This has nothing to do with System Preferences. That window is what you get in Pages when you double-click or right-click or Control-click the date object to bring up the options. See Jerry's last answer.
If I could try everyones patience a bit further.
No worries mate.
Regards, Ian.

Similar Messages

  • Why can't I set the Date format in English for Malaysia Region for my iPhone and iPad?

    Why can't I set the Date format in English for Malaysia Region for my iPhone and iPad?

    Apple should change the settings to Malaysia -> Malay / English / Chinese / Tamil

  • How can I permanently change the date format from the American format to the UK's without having to constantly change it manually every time I start a new spreadsheet?

    This is my first mac so I'm still getting my bearings with it. I've only used Windows programmes before. I can't understand why it's so hard to change the date format of the cells in Numbers to keep it showing the UK format. The system preferences of the mac show that it's in the correct region and has the correct date but this doesn't seem to transfer into the Numbers program. I was very impressed with the mac until I discovered this. If anyone knows how I can get the date to stay in the correct format without having to go through the process of altering it in the cell inspector everytime then I would be very grateful.

    Numbers & most apps, especially those from Apple, use the date format you have set in System Preferences > Language & Text > Region. You can then choose UK from the Region drop-down list. Mine says Custom because I've defined things further as in the second screenshot.

  • How can I change the date format in Reminders and in Notes?

    How can I change the date format in both Notes and Reminders? Preference on Imac and Settings in IOS do not allow me to change the format in those 2 apps.
    I Like to see 10oct rather than 10/10, as an example.

    pierre
    I do not have Mavericks or iOS - but the first thing I would do is reset the defaults - I'll use Mavericks as an example
    From If the wrong date or time is displayed in some apps on your Mac - Apple Support
    OS X Yosemite and Mavericks
        Open System Preferences.
        From the View menu, choose Language & Region.
        Click the Advanced button.
        Click the Dates tab.
        Click the Restore Defaults button.
        Click the Times tab.
        Click the Restore Defaults button.
        Click OK.
        Quit the app where you were seeing incorrect dates or times displayed.
        Open the app again, and verify that the dates and times are now displayed correctly.
    Then customize to taste - OS X Mavericks: Customize formats to display dates, times, and more
    OS X Mavericks: Customize formats to display dates, times, and more
    Change the language and formats used to display dates, times, numbers, and currencies in Finder windows, Mail, and other apps. For example, if the region for your Mac is set to United States, but the format language is set to French, then dates in Finder windows and email messages appear in French.
        Choose Apple menu > System Preferences, then click Language & Region.
        Choose a geographic region from the Region pop-up menu, to use the region’s date, time, number, and currency formats.
        To customize the formats or change the language used to display them, click Advanced, then set options.
        In the General pane, you can choose the language to use for showing dates, times, and numbers, and set formats for numbers, currency, and measurements.
        In the Dates and Times panes, you can type in the Short, Medium, Long, and Full fields, and rearrange or delete elements. You can also drag new elements, such as Quarter or Milliseconds, into the fields.
        When you’re done customizing formats, click OK.
        The region name in Language & Region preferences now includes “Custom” to indicate you customized formats.
    To undo all of your changes for a region, choose the region again from the Region pop-up menu. To undo your changes only to advanced options, click Advanced, click the pane where you want to undo your changes, then click Restore Defaults.
    To change how time is shown in the menu bar, select the “Time format” checkbox in Language & Region preferences, or select the option in Date & Time preferences.
    Here's the result AppleScript i use to grab the " 'Short Date' ' + ' 'Short Time' "  to paste into download filenames - works good until I try to post it here - the colon " : " is a no-no but is fine in the Finder
    Looks like iOS Settings are a bit less robust
    - Date/Time formats are displayed according to 'tradition' of your region > http://help.apple.com/ipad/8/#/iPad245ed123
    buenos tardes
    ÇÇÇ

  • How can i change the date format mm/dd/yyyy to dd/mm/yyyy

    How can i change the date format mm/dd/yyyy to dd/mm/yyyy

    Date, time and currency formats are controlled via Settings > General > International > Region Format - you can't just change the date format

  • Can we change the date format to be dd/mm/yyyy?

    Can we change the date format to be dd/mm/yyyy?

    Hello leahmaree,
    Yes, you can:
    Click the Options tab
    Click the Language & Formatting label
    Set the Date Order preference
    I hope that helps,
    Brian

  • How to change the date format?

    Hi,
    I need to display the data format as(YYYY-MM-DD). But now it displays(2009-1-9)
    Here is my code snippet which i used to display the data format as(2009-1-9)
    *<INPUT TYPE=TEXT NAME="date_submitted" MAXLENGTH=20 SIZE=10 VALUE="" onBlur= "return dateSubmitted()">  (YYYY-MM-DD)*
    *<SCRIPT LANGUAGE="javascript">*
    dateSubmitted()
    *</SCRIPT>*
    function dateSubmitted()
                        if (document.pgUpdate.date_submitted.value == "")
                             date = new Date();     
                             month = date.getMonth() + 1     
                             document.pgUpdate.date_submitted.value =
                                            date.getYear() + "-" + month + "-" + date.getDate();
                        return true;
    Can anybody help me how to change the date format?
    Thanks in advance!

    prit123 wrote:
    use SimpleDateFormat class. The code is :He posted a Javascript related question, not a Java related question.
    Please use forums devoted to Javascript. You're here at a Java/JSP forum.
    There are JS forums at webdeveloper.com and dynamicdrive.com. Good luck.
    String formatPattern = "yyyy-mm-dd";
    SimpleDateFormat sdf = new SimpleDateFormat(formatPattern);
    sdf.format(yourdate);yyyy-mm-dd denotes year-minutes-days. Please go read the SimpleDateFormat API as well.

  • Why does iCal automatically change the date of the entry i am making to the day before??

    why does iCal automatically change the date of the entry i am making to the day before??
    for example, when i am attempting to make a 'all-day' appointment on october 2nd 2011, it automatically shifts it to october 1st.
    but if i am doing a timed appointment for only a few hours, it will allow me to put it on that day.
    i am trying to put in travel dates so any help on how to fix this, would be greatly appreciated.

    alsdman,
    Quit iCal, and try removing the com.apple.iCal.plist file from your Macintosh HD/Users/yourusername/Library/Preferences Folder. Since that Library is now hidden, you have to use the Finder>Go Menu>Depress the "Option" key>Library. Drag the .plist file to your desktop, and log out/in or restart and check iCal for functionality.
    Also go to System Preferences...>Language & Text>Formats>Region: and set/re-set the appropriate "Region."

  • Why can't I see the data in the spreadsheet ?

    why can't I see the data in the spreadsheet file in Which I wrote my output data? I set the format of write to spreadsheet file to be %.11f. Though I can see only colums of zeros, I can plot out the data.

    I tried th "%.11f" format and it worked in the attached VI (6.1). Please respond and attach a small example VI that demonstrates your problem.
    Chris_Mitchell
    Product Development Engineer
    Certified LabVIEW Architect
    Attachments:
    array_test.vi ‏15 KB

  • HT201210 Why can't I change the location of my device backups?

    Why can't I change the location of my device backups?
    iTunes seems to force me to use my c:\ drive as the destination for all backups. 
    Background: I have set up my c:\ drive only for programs - all data is stored on separate drives - including my iTunes library and all media. So, I can't skinny down the c:\ drive any more without uninstalling programs.
    The issue is that my 10,000 rpm, 280 GB - C:\ drive is fast but small and is now FULL after I got about 1/2 way through a 128 GB backup of my ipad.  (Yes, all movies have been deleted off of the iPad to minimize the size of the backup.)
    I deleted the partial iPad backup, moved all the Mobile Applications to another drive, emptied the recycle bin and tried again with my much smaller iPhone.  You guessed it: the io7 update hung and both of my devices are now paper weights.
    Which leaves me f*cked, anyone know how I can un-f myself? 

    SPURCHASE wrote:
    The issue is that my 10,000 rpm, 280 GB - C:\ drive is fast but small and is now FULL after I got about 1/2 way through a 128 GB backup of my ipad.  (Yes, all movies have been deleted off of the iPad to minimize the size of the backup.)
    iTunes movies are not part of an iDevice backup.
    Videos & photos you take with the camera (in the Camera roll) are part of the backup but those should be sync'd to the computer and removed from the camera roll.

  • Need to change the date format in Bex

    HI All
    In SAP BI I have created a BEx Query. We can see BEx reports in MS Excel. Date format in the report is DD/MM/YYYY and i want it to be displayed like YYYYMMDD. but only for one date column in the report the rest stay the same. Please help.

    Hi Basson,
    Goto t-code SU01
    Enter you user ID details click on change --> select the Default TAB here you can find the option to change the date formats.
    Or
    In BW  goto Menu option System > User Profile>Own Data  > It will display the user profile parameters> in default tab page change date format there.
    Its better to go for a routine .
    Regards
    Prashanth K

  • I want to change the date format MM/YYYY to MM.YYYY in web report

    Hi to all experts,
       Here  the problem is: when i run a report for variable input when we select date as MM/YYYY its getting error . Here i need to change MM/YYYY to MM.YYYY. can u please tell me where exactly i need to change means in BEx or Web? if it is BEx where it is exactly pls tell m ethe step to step procedure.
    Its urgent!
    ( I will assign the points if its useful to me)
    Advance Thanks,
    Shah

    Hi Siggi,
            In su01 if we go  and change the date format from MM/YYYY to MM.YYYY  for a particular user ex:ss11 , if another user ex:bst55 try to run the web report he/she may get same error .If we make the change in su01-> default tab->under date format for a particular user , is it work for other users?
    Can u tell me step by step where exactly we need to go in AWB and where need to modify.
    I am looking for ur answer.
    Thanks in Advance
    Shah

  • Change the date format from mm/dd to dd/mm

    Is there any way to change the date format? Currently, my today screen, calendar app, etc is set to display dates as mm/dd. I'd like to change it to the UK format (dd/mm) but I have not been able to find a single method that works. I've tried themes as some have recommended but once I install them, it's still showing mm/dd.
    I'm not unfamiliar with upgrading the OS and "slimming" it down, so even a method that requires me to remove US resource files will be okay.
    Frankly I'm disappointed RIM doesn't provide users with a "Regional Settings" type option like in Windows to change the date format.
    Any advice would be most appriciated.

    Yes you can change Date format from mm/dd to dd/mm its done automatically by " Display language " selected :
    Go to Menu : Setup - choose  - Language and Input Methods - look for " Display Language" there is a  small window with down arrow , click the down arrow and ,  change from " English"  to " English (UK)  "for DD / MM ,date format , or change to       " English (US) "  for MM / DD date format.
    Hope this help .

  • While importing pictures I cannot change the import settings on the right hand side of the panel. I would like to change the date format.

    Apparently I am missing something (stupid). Suggestions are welcome. I'm a novice with Lightroom. Just migrated from Aperture.

    I am going to assume that what you meant about changing the date format is that you want to change the way the date is formatted in the renamed file. Is that correct? To do that, you need to tell Lightroom you want to rename your photos during import. On the right hand side panel of the Import dialog is a section on File Renaming. Open that up and you will find a Template drop down box. This is where you can build a file renaming template to fit your needs or you can create a custom one. If you do create your own, make sure to save it as a preset if you want to reuse later. There are all sorts of ways to rename your files with several different date formats to choose from.
    Another possibility is the subfolder option for where you are going to store your imported folders. If you chose to Organize By Date, you can also use the Date Format drop down box to choose a date format. This will cause Lightroom to build a folder for each date found in photos you are importing a create a separate folder for each day found. So, if you had three batches of photos from three separate days, three new folders would be built by Lightroom and the photos created on day one would be stored in the day one folder. Same for day two and day three.
    Finally, if you don't like the format of the capture date or one of the other dates fields stored in the metadata, you are out of luck. You can change the date but not the format.

  • Change the date format

    By default the component <af:selectInputDate> shows the client machine's date format when the image is clicked. How can we change the date format of the same irrespective of the client machine's date format
    <af:selectInputDate accessKey="D" label="From Date:" readOnly="yes"
    value="#{EvalBean.fromDate}"/>Also
    1. How can we validate the date range also?
    Eg: From Date should not be greater than To Date
    2. Should not allow the user to select Date (From Date or To Date) greater than today's date.
    Uday

    If you want to do it at the page level you can use the
    <f:convertDateTime pattern="dd/MM/yyyy"/> jsf converter inside your date field
    and also the af:validateDateTimeRange tag to limit the date range.
    If you don't want to do it in every single page and you are using the ADF Model layer for binding you can define a control hint on your date field that specify a format mask. You can also add a method validator to your date field to verify the range.

Maybe you are looking for

  • Outlook 2010 won't work

    I receive the following error when trying to set up an account for outlook 2010. The connection to Microsoft Exchange is unavailable.  Outlook must be online or connected to complete this action. Chuck

  • VGA No Signal

    What does it mean when i get the message that says "VGA No Signal"?  Do I need to replace something? This question was solved. View Solution.

  • Installing WebLogic 5.1 with Netscape Enterprise Server 3.5.1

    How can I configure Netscape Enterprise Server 3.5.1 to use WebLogic 5.1?

  • Problem with 6.0.4 hdb.h.mod egID

    I've tried to set the "execution group" on Host as described in http://wikis.sun.com/display/SPS/Host+Permissions+in+SPS+6.0.4 The following is executed as "admin" cr_cli -cmd hdb.h.mod -ID NM:usv0703 egID NM:"EWAE-Installer" exp:$HOME/.n1sps --> and

  • Is the iPod nano or the iPod touch 5th generation better?

    I wanted to buy an iPod touch 5 but the nano is cheaper. Can you play games on it. Should I use my money on the iTouch(iPod touch) 5 instead? Please help!