Ask a questionAsk a question
 

AnswerSort DateTime Field

  • Wednesday, March 26, 2008 10:07 AMNevrotik Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Help me!
    I wish to take from the adjusted list the certain values on field DateTime.
    However, the inquiry sorts data only by date of, without consideration time. How it is possible to consider both date, and time?

    Code Snippet

    <Where>
     <Eq>
      <FieldRef Name='dateTimeField' />
      <Value Type='DateTime'>
       2008-03-24T12:00:00Z
      </Value>
     </Eq>
    </Were>


    Enter:
    1. 3/24/2008 12:00:00 AM
    2. 3/24/2008 5:00:00 PM
    3. 3/24/2008 12:00:00 AM

Answers

  • Wednesday, March 26, 2008 10:10 AMGavin Morgan Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer

    add in the IncludeTimeValue='TRUE'  property to the Value type. (like below)

     

    Code Snippet

    <Where>
     <Eq>
      <FieldRef Name='dateTimeField' />
      <Value Type='DateTime'  IncludeTimeValue='TRUE'>
       2008-03-24T12:00:00Z
      </Value>
     </Eq>
    </Where>

     

     

All Replies