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
ÇÇÇ

Similar Messages

  • 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

  • How can I change the date format?

    How can I change the default date format for all date fields in Oracle CRM OD? Currently it is set to the US format of MM/DD/YYYY.
    I would like to spell out the month, e.g. October 6, 2010, in order to avoid confusion between US and international date formats.
    For example 11/6/2010 means October 6, 2010 in US but it means 11 June 2010 internationally. Having a global team, this is causing problems for us.
    Georgi

    Georgi, the company profile has a Default Locale. Also each user can have their Locale. The US format of MM/DD/YYYY can not be changed to October 6, 2010 as an example.
    I would recommend that you submit a enhancement request to CRM On Demand customer care.

  • How can I change the date format in a Numbers table?

    I have selected all of the cells in a date column, opened the Inspector and selected the Date & Time format, selected the date & month format butb the cell date does not conform to this format.  Instead I am getting the month, day, year, and time.
    Stu

    Stu,
    In order for Numbers to format the date it must already be a valid date.  If you post a screenshot we can see that the dat is valid.
    Make sure after you enter the date that the date ends up being right justified AUTOMATICALLY.  If the date is NOT valid, Numbers interprets it simply as text which it leaves left justified

  • How can I change the date format to International (Europe, Asia, etc)?

    I am currently in Japan and would like to change my iPod's date format to an International format instead of the default American format. I have tried changing my mac's regional setting to Japan, UK, France and my iPod still displays the American date format. The interesting thing is that my mac correctly displays the date format in day-month-year format.
    I would be most grateful for any suggestions offered as I would like to get my iPod to correctly display the date. I had to manually set the iPod to the 24 hour clock. I am reasonably comfortable using the command line in a terminal.
    Message was edited by: PugetSounder

    Hi,
    This question is marked as answered but nothing shows as to the solution. Is there an answer?

  • How does one change the date format for PlayMemories Home folders?

    I am using PlayMemories Home Version 2.0.00.11271 and have many folders within it which contain only photographs imported from my Sony DSC-H9.  Unfortunately, PlayMemories Home insists upon dating all folders in a month/day/year manner; and this makes little sense if one wishes to have the folders listed in logical chronological order.  How can I change the date format to year/month/day?  Changing the name of each folder, one by one, will take a very long time!  Your helpful advice in this matter will be greatly appreciated.  Thank you. System information:
    Operating system: Microsoft Windows XP Professional
    Service pack : Service Pack 3
    Memory: 1.5 GB
    Processor:         Intel(R) Pentium(R) M processor 1.86GHz
    Max. clock speed: 1.86
    Manufacturer: IBM
    Model: 1847W76
    System language setting: English (United States)
    User language setting: English (United States) 

    I too thought that the folder naming format was obviously wrong and couldn't find a way to change it. I do agree that placing photos in folders according to when they were taken is a great idea. I had been considering writing some software to do just that. After discovering that PlayMemories does it, I had it re-import all my photos. Then I wrote a small Perl script to rename all of the folders into year-month-day format. Included here is the Perl script. It only acts on a single folder - use it on the root folder where all the PlayMemories folders are. It will rename all folders currently in a month-day-year format. I used it without problems but of course there is no guarentee that it is error free. This should work with any common version of Perl. Tom # There should be one command line argument: the directory to act upon
    if ( scalar(@ARGV) == 0 ){
     print "Usage: RenameDirs <dir>\n";
     print " Where dir is the directory containing the directories to rename.\n";
     exit;
    $mydir = $ARGV[0];
    chdir $mydir or die "Couldn't chdir to $mydir: $!";
    opendir(ROOTPHOTODIR, ".") or die "Failed to open the pictures directory $mydir: $!";
    @allphotodirs = readdir ROOTPHOTODIR;
    closedir ROOTPHOTODIR;
    foreach $dir (@allphotodirs) {
     if ( -d $dir ) {
      print "$dir is a directory";
      if ( $dir =~ /^(\d{1,2})-(\d{1,2})-(\d{4})$/ ) {
       print " and has the proper format: month $1 day $2 year $3 and will be renamed to ";
       $newname = sprintf "%4u-%02u-%02u", $3, $1, $2;
       print "$newname\n";
       rename $dir, $newname or die "failed to rename $dir to $newname: $!";
      else {
       print " but is not of the proper format\n"
     elsif ( -f $dir ) {
      print "$dir is a file\n";
     else {
      print "$dir is neither a directory nor a file\n";
    }

  • How can we give the Data Format (File Type ) in Runtime

    Hi all,
    How can we give the Data Format (File Type ) in Runtime for the following method,
    cl_gui_frontend_services=>gui_download.
    Thanks in advance
    Sri

    There is a filetype parameter which you can set
    CALL METHOD cl_gui_frontend_services=>gui_download
      EXPORTING
    *    BIN_FILESIZE              =
        filename                  =
    *    FILETYPE                  = 'ASC'
    *    APPEND                    = SPACE
    *    WRITE_FIELD_SEPARATOR     = SPACE
    *    HEADER                    = '00'
    *    TRUNC_TRAILING_BLANKS     = SPACE
    *    WRITE_LF                  = 'X'
    *    COL_SELECT                = SPACE
    *    COL_SELECT_MASK           = SPACE
    *    DAT_MODE                  = SPACE
    *    CONFIRM_OVERWRITE         = SPACE
    *    NO_AUTH_CHECK             = SPACE
    *    CODEPAGE                  = SPACE
    *    IGNORE_CERR               = ABAP_TRUE
    *    REPLACEMENT               = '#'
    *    WRITE_BOM                 = SPACE
    *    TRUNC_TRAILING_BLANKS_EOL = 'X'
    *  IMPORTING
    *    FILELENGTH                =
      changing
        data_tab                  =
    *  EXCEPTIONS
    *    FILE_WRITE_ERROR          = 1
    *    NO_BATCH                  = 2
    *    GUI_REFUSE_FILETRANSFER   = 3
    *    INVALID_TYPE              = 4
    *    NO_AUTHORITY              = 5
    *    UNKNOWN_ERROR             = 6
    *    HEADER_NOT_ALLOWED        = 7
    *    SEPARATOR_NOT_ALLOWED     = 8
    *    FILESIZE_NOT_ALLOWED      = 9
    *    HEADER_TOO_LONG           = 10
    *    DP_ERROR_CREATE           = 11
    *    DP_ERROR_SEND             = 12
    *    DP_ERROR_WRITE            = 13
    *    UNKNOWN_DP_ERROR          = 14
    *    ACCESS_DENIED             = 15
    *    DP_OUT_OF_MEMORY          = 16
    *    DISK_FULL                 = 17
    *    DP_TIMEOUT                = 18
    *    FILE_NOT_FOUND            = 19
    *    DATAPROVIDER_EXCEPTION    = 20
    *    CONTROL_FLUSH_ERROR       = 21
    *    NOT_SUPPORTED_BY_GUI      = 22
    *    ERROR_NO_GUI              = 23
    *    others                    = 24

  • How can i change the date of birth on my account

    how can i change the date of birth on my account

    Hello! Please login here: https://appleid.apple.com/account/manage
    Then go to "Password and security"
    Answer your security questions and the birthdate option will appear.

  • 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 can I change the date "taken" on individual photos in iPhoto?

    How can I change the date "taken" on individual photos in iPhoto? I have some photos that were scanned and the date "taken" info displays the day the picture was scanned as opposed to the date it was actually taken. Is there some way to edit this information?

    In iPhoto '11 on your Mac use the command "Photos > Adjust Date and Time" and enable the "Modify original files" option, if you want to set the date of the originals to the correct date as well.
    Regards
    Léonie

  • How can I change the date on my calendar?

    How can I change the date on my calendar?  For some reason, it thinks today's date is Dec. 31, 1969.

    - Go to settings>General>International and make sure that calendar is set to Gregorian.
    - Go to Settings>General>Date&Time and set the correct time and date. I iOS 5, set it to Automatic.

  • How can I change the date on the top of the screensaver on my iPad air?

    How can I change the date at the top of the screensaver?  It still has the date I purchased it.  I tried the date and time and resetting the ipad.

    What do you mean at the top of the screensaver ? If you mean the wallpaper image that you have as your background, and which also shows on the lock screen, then you can change that image via Settings > Wallpapers & Brightness - did you take a screenshot on the date that you bought your iPad, and that screenshot included the date on it ?
    On my lock screen, if that's what you mean by screensaver, then the date that shows below the time is picked up from Settings > General > Date & Time e.g.

  • How can i change the data from one Time Capsule to another?

    How can i change the data from one Time Capsule to another?

    Do you mean copy it?  If so, see #18 in Time Machine - Frequently Asked Questions  You'll need section 2 there.
    If you mean something else, please clarify.

  • How can I change the space between a checkbox and text all at one time? I have a lot of checkboxes in my form.

    How can I change the space between a checkbox and text all at one time? I have a lot of checkboxes in my form.

    Okay, I haven't found a way to add an extra space using Find/replace, but you might be able to add some text wrap to the check boxes that will push the text away from them.
    Open Find/Replace and click the Object tab.
    Click the Specify attributes to find button to the right of the Find Object Format: field.
    Under Basic Attributes, choose Stroke and then the Black swatch (assuming the black swatch is applied to the strokes of your check boxes). If there are no other stand-alone objects in your form with a Black stroke, this should be all you need. (If there are Black strokes on your table cells, they will be ignored.)
    Click OK
    Click the Specify attributes to change button to the right of the Change Object Format: field.
    Under Basic Attributes, choose Text Wrap & Other > Text Wrap > Type: > Wrap around bounding box (2nd button from left)
    Under Offset, set a Right offset at the distance you'd like to add (I don't know what units you use, but the 3-5 points might work for your purposes...might take some trial-and-error to get it where you want)
    Click OK
    Click Change All

  • HT4314 I have two ipods in my house that were set up under the same email.  I have since assigned two different emails.  How can I change the game center account so that is not shared by both ipods because it is for two different users and they are not ha

    I have two ipods in my house that were set up under the same email.  I have since assigned two different emails.  How can I change the game center account so that is not shared by both ipods because it is for two different users and they are not happy?

    By "game center account", do you mean Apple ID?
    If so, you can change it.
    1. Tap settings and navigate to iTunes and App Stores
    2. Tap "Apple ID" and then tap "Sign Out"
    3. Log in with a different ID.

Maybe you are looking for

  • Please help, Photoshop gurus.

    My ? is for the gurus out there who know about Photoshop Elements. I've posted it on the PSE board, (a.k.a. Adobe user forum. http://www.adobeforums.com/cgi-bin/webx/.3bc135be) but no one has replied. The problem is that my How-To palette in PSE 4.0

  • Multiple Location of datafiles in Data Guard Environment

    I have Data Guard setup in my oracle 10g database. Uptil now , all the datafiles were at same location, therefore db_file parameter setting in pfile was fine. Now I want to move my few of the datafiles at another location. Say, few of my datafiles wo

  • Play YouTube Video Using Movie URL

    InDesign CS3 Hello, Is it possible to insert a movie that uses a URL to a video on YouTube?  YouTube URL's do not contain the actual file name/type and I believe that is why I am unable to play the video - however I thought I would check and see if a

  • Weblogic Server statistics (other than admin console)

    Hi, I am using WLS 5.1 SP 12 on AIX 5.1. I need to figure out how to provide weblogic server statistics dynamically (Such as active servlets, response times, session stats etc). I know this information is available on the weblogic admin console. But

  • Nano iPod USB DFU Device

    Hey all, i received my ipod as a gift. It was working fine for a few weeks until one day i plugged it into my computer. After plugging it into my computer, the nano stopped working. The screen does not turn on. Yet there is power and the ipod is on.