Date Picker Calendar Show Wrong Date Information Dec/Jan 2014-2015

When using a Date Picker, the offered Date for January 1st 2015 is a Friday!  It supposed to be a Thursday!
You can move to February, and return to January again, and it will correct itself.  
This happens in Office 2007 and 2010
What's gone wrong?
IT will also offer the wrong December dates.
Is there a fix please?

Re:  Bad date
Some remote possibilities...
  Your computer's clock has an incorrect date
  The wrong year is entered somewhere as the first day in 2016 is a friday.
  You have the wrong date system selected 1900 vs. 1904 or vice versa.
  You have a 3rd party (non MS) Date Picker that is programmed incorrectly.
  You have Office 2013 (nothing seems to work there)
There are alternatives and I offer one for Excel...
a free excel add-in date picker ("Get Your Own Date")
(no ads, no trackers, no cookies, no registration)
https://jumpshare.com/b/O5FC6LaBQ6U3UPXjOmX2
Jim Cone
Portland, Oregon USA

Similar Messages

  • Date Picker query showing "No Data Found", works in SQLPlus

    I have created 2 Date Picker items - P2_START_DATE and P2_END_DATE. I have set the format of these to 'DD-MON-YYYY'.
    This is the query I have to select the data based on the values from the date pickers:
    select sample_date,reading from meter_data where sample_date between to_date(:P2_START_DATE,'DD-MON-YYYY') and to_date(:P2_END_DATE,'DD-MON-YYYY') order by sample_date;
    The P2_START_DATE is '20-JAN-2011', the P3_END_DATE is '21-JAN-2011'.
    The query returns "No Data Found" when run in APEX, but when I run this in SQLPlus on the host I get data:
    select sample_date,reading from meter_data where sample_date between to_date('20-JAN-2011','DD-MON-YYYY') and to_date('21-JAN-2011','DD-MON-YYYY') order by sample_date
    20-JAN-2011 .39
    20-JAN-2011 .14
    20-JAN-2011 .14
    20-JAN-2011 .18
    21-JAN-2011 .13
    Can someone explain what I'm doing wrong? I have tried a few different formats, with no luck.
    TIA

    Hi Jeff,
    My Requirement is also looks like same, but am not able figure it out the reason why am getting no data found message in my chart(report).
    Requirement:
    I have a page, where two date picker(html5) items let say P30_FROM_DATE, P30_TO_DATE are there, apart from this i have one button as well,
    when the user select the from and to date from the date picker, and as soon as click on the button (SHOW), need to display the 2D Stacked Bar Char.
    so to achieve this, i have created a blank page, under region i have created a chart (2D Stacked Bar Chart), under items--> i have created two date picker items and one button.
    my query is
    SELECT NULL LINK,
           FLOW_STATUS_CODE LABEL,
           COUNT(ORDER_NUMBER) VALUE
      FROM
           OE_ORDER_HEADERS_ALL
    WHERE
           CREATION_DATE
           BETWEEN TO_DATE(:P30_FROM_DATE,'DD-MON-YYYY') AND TO_DATE(:P30_TO_DATE,'DD-MON-YYYY')
    GROUP BY FLOW_STATUS_CODE;
    Issue:
    Once i select the From and To Date, when am click on Show button, am not able to see as desired chart, instead am getting no data found message in the chart location.
    Can you please tell me how to do this.
    i would like to know that, how do i capture those two date item values in my query, and how do i initiate my report when am pressing button.
    please revert back to my below mail.
    Regards
    Santhosh Kumar. K
    [email protected]

  • Date Picker Calendar Question

    For the last several days I am looking for a way to incorporate into my php page (developed with Dreamweaver CS5) a date picker /Calendar (like the ones that the travel agencies have for example) that allows a user to enter in a input text field the date or if he/she chooses to click a button that will show a calendar (hopefully aligned with the text field)  - then the user should be able to click on  a selected date: action that triggers the dissapearance of the calendar and the selected date to be shown in the text field: This seems quite basic - but for some reason I cannot find a widget of anything that works this way.
    Any help is very much appreciated.
    Carla

    http://jqueryui.com/demos/datepicker/
    Gotta love jQuery!
    There is also an extension on the Adobe Dreamweaver Exchange [HERE]
    But I haven't had a chance to test this one and some of extensions are little out of date and have IE8 - so test to be sure.
    Hope this helps!
    Lawrence   *Adobe Community Professional*
    www.Cartweaver.com
    Complete Shopping   Cart Adobe Dreamweaver
    Stay updated - Friend, Follow, and Bookmark!
    http://www.twitter.com/Cartweaver
    http://www.cartweaver.com/facebook
    http://blog.cartweaver.com

  • PJC Calendar setDate Wrong date format. Date change failed?

    Forms 10.1.2 using forms demos pjc code.
    The calendar pjc I added to my form works except I can't initialize it with a date. If I try to initialize a date it always produces 'Wrong date format. Date change failed.' error.
    In a post-query trigger, I initialize the calendar's date using:
    SET_CUSTOM_PROPERTY('PJC.CALENDAR',1,'setDate',to_char(:lead.date_received,'DD.MM.YYYY'));
    In the java console, this yields:
    Warning: Wrong date format. Date change failed.
    Warning: Wrong date format. Date change failed.
    I get the same result when using a hardcoded date like:
    SET_CUSTOM_PROPERTY('PJC.CALENDAR',1,'setDate','01.12.2006');
    What is the flaw in my incantation?

    Hello,
    This is the syntax used in the calendarpjc Forms demo:
        call the setDate method on the calendar PJC via the PL/SQL built in
        set_custom_item_property
        convert Oracle date to String recognised by Java
      procedure setDate(d in date) is
      begin
        set_custom_property(lGlobals.hCalendar,1,'setDate',to_char(d,'Mon DD, YYYY'));
      end;     Francois

  • How to implement a Date Picker (Calendar) as a LOV in Portal Form?

    I have a form, which will input date from user, and I also have javascript calender.
    How to implement a Date Picker (Calendar) as a LOV in Portal Form? Do I need to choose POPUP and LOV for Date?
    Instead of typing the Date within a Portal form, a popup Calender that will allow user to Pick a date.
    Please help anyone!!

    Once you have the JavaScript and have added it to your form, you need to the the following. First off, you need to be able to customize the HTML code for the form (i.e. choose custom for form type when creating the form). Once you do that go into the custom layout to customize your HTML code. Find the field you want to add the date picker to. It will be <#your_field_name.ITEM#>
    Paste this code after it:
    <a href="javascript:show_calendar('forms[0.elements[16');" onmouseover="window.status='Date Picker';return true;" onmouseout="window.status='';return true;"><img src="the source of your image file" width=34 height=21 border=0></a></TD>
    You will have to play around with the forms[0].elements[16]. 16 is what date field is set to. However your will differ, so just play with it.
    Hope this helps.
    Martin

  • Invoice table sold to party show wrong data

    Dear All
    While creating excise invoice in background sold to party show wrong data.
    In invoice ship-to-party andsold-to-party display correct but when we check
    in J_1IEXCHDR table ship-to-party and sold-to-party display same data.
    After upgrading support packs this problem came.
    Regards
    Pyneri

    Hi
    Refer this
    Re: can anyone tell me in which table is sold-to-party name stored
    Regards
    N Ganesh

  • Aggregate table showing wrong data

    Hello Gurus:
    I am working on an issue, where a report is showing wrong value for an aggregated fact table.
    If I try not including it in query, then results work fine. But by default BI server is pointing to aggregate table ( which it should ).
    So my questions are
    1) Does Aggregate tables are refreshed automatically with DAC?
    2) I know data is wrong in aggregate table. How do I verify?
    3) How to make a particular report hit regular table instead of aggregate table?
    Please let me know.
    Thanks.
    ~Vinay

    Alright. So I made some progress on this issue, HOWEVER it is still not solved.
    1) Aggregated tables are refreshed daily with DAC. There is a script for that on server which is created using Aggregate Persistence wizard.
    2) ONLY one column is showing wrong data. I have verified this using Toad. However I dont know why is it showing wrong data. Theoretically it should be fine.
    3) this question is still same.
    How to make a particular report hit regular table instead of aggregate table?
    Please help me out.
    Thanks.
    ~Vinay

  • Report showing wrong data

    Hi Gurus,
    When we are generating report in the answers in one column it is showing wrong data from where i have to start for this issue.
    Thanks,
    Rafi

    Pull that column alone,run report, compare the results with your manual query, and also compare the physical query.
    if all are good then try to add other column from any other dim and then do the same as above
    repeat till you know the cause.
    Pls mark if helps

  • About this mac shows wrong display information

    Hi all,
    About this mac in my macbook pro shows wrong display information.It shows Built in color LCD display  Intel HD Graphics 4000 512 MB graphics..Actually mine is LED display and 1gb Graphics..Pls help me to analyse the problem????OS:Mount Lion

    suggest you contact Apple Care on AppleCare: 1-800-275-2273  (If in USA) or book Genius appointment
    (Its free)  for them to check all the details
    http://www.apple.com/support/contact/

  • Hp pavilion showing wrong battery information

    hp pavilion showing wrong battery information, also not giving warning message when battery low. Sometiimes its showing right information. What should i do to solve this problems?

    Hi @ajmalmji ,
    Welcome to the HP Forums!
    It is a terrific place to find answers.
    For you to have the best experience in the HP forum I would like to direct your attention to the HP Forums Guide Learn How to Post and More
    I understand that your battery power is not showing correctly and does not provide warnings.
    Here is a link to Test and Calibrate battery.  As you did not provide your Operating System you will need to select the correct one from the list.
    Good Luck!
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Calendar app showing wrong date for iCal feed.

    Has anyone else noticed that when an iCal feed publishes an event that is after 0000Z, but still on the previous date in local time, it's added to the calendar on the wrong day?
    Example:  Your phone is being used in Chicago (CST).  An ical feed you subscribe to publishes and event for 0300Z on November 5th.  That event should then actually be on November 4th at 2100 CST, however, the phone will enter the event with the corrected time of 2100Z, however, won't correct the date which should be on the 4th (CST = GMT -6 hours).

    I have my Mac's calendar auto-adjusting to time.apple.com.  After coming back from Asia, now my calendar shows that November 11th, 2014 is a Wednesday; it is supposed to be Tuesday!

  • Calendar year view showing wrong date

    My Calendar shows the correct date in the dock, and also in Day, Week and Month view but when I click on Year view it highlights yesterday's date as Today!
    Has anyone else had this problem and, if so, have they found a remedy?
    Many thanks.

    I have noticed a good number of such issues with I-Cal over the last several months. Many, far more serious than this date issue. The new beta version of I-Cal is right around the corner and if it works as it usually does (latest Safari update released yesterday fixed the crash issues), the next update should repair these issues. I hope this helps.

  • Calendar on my 8310 shows wrong dates for November 2009

    All of the calendar months are correct except November, 2009. Instead of starting on Sunday it starts on Saturday.  Any clues on how to fix it?

    My DVR manager show no dates at all on scheduled movies!
    This was not the case before.
    Can wsomebody confirm the same problem or is it only on my side?

  • Calendar app wrong date/days

    i have a fully updated iphone 5. My calendar app is showing the date on the wrong day of the week from January 2015 onwards. In yearly view it is OK but is wrong in monthly view. Also in monthly view September 2014 is missing and I have 2 x October 2014. Can anybody help????

    Hey Naomi1111,
    Thanks for the question. I understand that you are experiencing a weird issue with the calendar application on your iPhone 5. To troubleshoot, let’s first try restarting the Calendar application:
    iOS: Force an app to close
    http://support.apple.com/kb/HT5137
    Next, let’s check your Date & Time settings to make sure they are configured correctly:
    iOS: Troubleshooting issues with date and time
    http://support.apple.com/kb/ts3920
    And finally, if your issue persists, we’ll want to back up and restore your iPhone as new:
    Use iTunes to restore your iOS device to factory settings
    http://support.apple.com/kb/ht1414
    Thanks,
    Matt M.

  • Default value of date picker not showing in sql query

    Hi,
    I have a tabular form page with a query similar to the following:
    select emp_name, salary from emp_table where trunc(hire_date)=trunc(to_date(:P42_START_DATE))
    where P42_START_DATE is the name of a date picker item.
    I set the source type of the date picker to be "Only when current value in session state is null" and the value to be "select trunc(next_day(sysdate,'MON')-7) from dual;" - basically the monday of the current week. I set the sequence of the date picker to be 5, and the sequence of the region to be 10. Now, when I open this page, no data gets pulled. I checked the page source, and the value of the date picker input is being set to "17-NOV-2008", but it somehow isn't reflected in the sql query.
    Data does get retrieved if I manually set the date in the date picker, but I'd like it to default to the monday of the current week. What am I doing wrong?
    Thanks

    nope, still same problem.
    I used javascript alerts to help debug, and here might be some useful information.
    The computation to set the value of :P42_START_DATE is set to run "before header", but when I put this following javascript in the header:
    <script language="javascript">
    var c = $v('P42_START_DATE');
    alert(c);
    </script>
    the alert box is blank (ie :P42_START_DATE is empty). Putting the same exact script in the footer gives 24-Nov-2008 in the alert box. Now, the SQL query is run sometime after the first alert and before the second alert, I believe. Why would the value of :P42_START_DATE not be getting set at the correct time?
    P42_START_DATE is a date picker item that belongs to the region SCHEDULE (which is where the sql query is). I set the sequence of the region to 10, and the sequence of the date picker and computation to be 5 and 6. Even so, does this mean that the sql query is executing before the call to the computation, because the region needs to be created before any items can be created that belong to the region?

Maybe you are looking for

  • I own fully paid for license for Dreamweaver CS6. Every time I click to open the app, I get a very annoying pop-up message. How do I stop it?

    I own fully paid for license for a Mac version of Dreamweaver cs6. Every time I click to open the app, and before I can start using CS6, I get a very annoying pop-up message (see screen shot below) that states I have a trial version and do I want to

  • BPM's not sequencial

    I have an existential question regarding BPM's... If message 1 starts a BPM and message 2 starts another instance of the same BPM later. If the calls to the BPM are done using EOIO... will this assure me that the BPM's will run in sequence ? This mea

  • Question on sharing photos thru photo stream

    Hello, guys. I love doing photography and have many friends who I want to share photos with. I use aperture mostly to do processing and photo orgnization. I know how to share photos with other people who have apple ids thru photo stream. But I have f

  • Cross References Being Lost InDesign CS4

    I am setting up cross-references in a multiple document book using InDesign CS4 (Windows). When our editors open the files using InCopy CS4 some of the cross-references are broken (little red flag icon appears). I've relinked the cross-references sev

  • It is possible to get giving parameter field name in function module

    i have one question like below . at main report . call funciton Fm1   exporting      var1 = W_A      var2 = W_B at function module i want to get  giving  parameter field name, in here  value was  "W_A" and "W_B"  . plz give me some hints or any advis