<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ODS Excel + Proc Report - issue with Datetime22.3 values in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482039#M286809</link>
    <description>If you export as character this issue doesn't appear but not a nice workaround.</description>
    <pubDate>Fri, 27 Jul 2018 20:30:13 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2018-07-27T20:30:13Z</dc:date>
    <item>
      <title>ODS Excel + Proc Report - issue with Datetime22.3 values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482008#M286805</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Brief description of the issue:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;original value 22Feb2018:22:04:01.&lt;FONT color="#FF00FF"&gt;485&lt;/FONT&gt; is changed to 22Feb2018:22:04:01.&lt;FONT color="#FF0000"&gt;430&lt;/FONT&gt; when sas dataset is exported as .xlsx using ODS excel and Proc Report combination.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;The last 3 digits are changing automatically in the excel export. This happens with proc export with dbms=xlsx. &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;But dbms=&lt;/FONT&gt;&lt;FONT color="#0000FF"&gt;csv output seems to maintain the values correctly.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried other formats but they do not work. ODS excel is fine otherwise for all formats.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Seems like this needs to be addressed within SAS software per my knowledge.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appreciate any feedback and discussions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Addl Information/Steps:&lt;/P&gt;&lt;P&gt;1. Here is the code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods listing close;
options nobyline nolabel;
ods escapechar='^';
ods excel file = "&amp;amp;&amp;amp;xlout.&amp;amp;&amp;amp;mem&amp;amp;i...xlsx" style = pearl options (sheet_interval="none" sheet_name="Data");

proc report split='~' nocenter missing list;
    column _all_;
run;

ods excel close;
ods listing;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Here are the original data set values&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="datasetValues.JPG" style="width: 353px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22081i02F4AA85BAEC3A7D/image-size/large?v=v2&amp;amp;px=999" role="button" title="datasetValues.JPG" alt="datasetValues.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. Here is the incorrect .xlsx file output&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Incorrect_odsExcelProcReportValues.JPG" style="width: 352px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22082iCA0CD451A35D010C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Incorrect_odsExcelProcReportValues.JPG" alt="Incorrect_odsExcelProcReportValues.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4. Here is an image of .csv output&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Correct_procExportCSV.JPG" style="width: 322px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22083iCB7A0C6E0B2879D1/image-size/large?v=v2&amp;amp;px=999" role="button" title="Correct_procExportCSV.JPG" alt="Correct_procExportCSV.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;5. The define statement from log file is as below.&lt;/P&gt;&lt;P&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;DEFINE createdt / SUM FORMAT= DATETIME22.3 WIDTH=22 SPACING=2 RIGHT "createdt" ;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;DEFINE Updated / SUM FORMAT= DATETIME22.3 WIDTH=22 SPACING=2 RIGHT "Updated" ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 20:40:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482008#M286805</guid>
      <dc:creator>rkval</dc:creator>
      <dc:date>2018-07-27T20:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel + Proc Report - issue with Datetime22.3 values [how to improve your question]</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482018#M286806</link>
      <description>&lt;P&gt;Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/214565"&gt;@rkval&lt;/a&gt;,&lt;/P&gt;&lt;BR /&gt; &lt;P&gt;Your question requires more details before experts can help.&amp;nbsp;Can you revise your question to include more information?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Review this checklist:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Specify a meaningful subject line for your topic.&amp;nbsp; Avoid generic subjects like "need help," "SAS query," or "urgent."&lt;/LI&gt;
&lt;LI&gt;When appropriate, provide sample data in text or DATA step format.&amp;nbsp; See &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;this article for one method&lt;/A&gt;&amp;nbsp;you can use.&lt;/LI&gt;
&lt;LI&gt;If you're encountering an error in SAS, include the SAS log or a screenshot of the error condition.&amp;nbsp;Use the&amp;nbsp;&lt;STRONG&gt;Photos&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;button to include the image in your message.&lt;BR /&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" style="width: 279px;"&gt;&lt;IMG src="https://kntur85557.i.lithium.com/t5/image/serverpage/image-id/16608i91A52F817EAC9A69/image-dimensions/279x150?v=1.0" width="279" height="150" alt="use_buttons.png" title="use_buttons.png" /&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;It also helps to include an example (table or picture) of the result that you're trying to achieve.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;To edit your original message, select the "blue gear" icon at the top of the message and select&amp;nbsp;&lt;STRONG&gt;Edit Message&lt;/STRONG&gt;.&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;From there you can adjust the title and add more details to the body of the message.&amp;nbsp; Or, simply reply to this message with any additional information you can supply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" style="width: 229px;"&gt;&lt;IMG src="https://kntur85557.i.lithium.com/t5/image/serverpage/image-id/16605iAC020BC79315B045/image-size/large?v=1.0&amp;amp;px=600" alt="edit_post.png" title="edit_post.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;SAS experts are eager to help -- help&amp;nbsp;&lt;EM&gt;them&lt;/EM&gt; by providing as much detail as you can.&lt;/P&gt; &lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style:italic;font-size:smaller;"&gt;This prewritten response was triggered for you by fellow SAS Support Communities member &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&lt;/SPAN&gt;&lt;/P&gt;.</description>
      <pubDate>Fri, 27 Jul 2018 19:50:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482018#M286806</guid>
      <dc:creator>Community_Guide</dc:creator>
      <dc:date>2018-07-27T19:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel + Proc Report - issue with Datetime22.3 values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482019#M286807</link>
      <description>&lt;P&gt;What does the excel value look like when you remove the cell display format? or change to just a number with a few decimal values and no date format?&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 19:51:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482019#M286807</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-07-27T19:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel + Proc Report - issue with Datetime22.3 values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482026#M286808</link>
      <description>&lt;P&gt;Post your full code used and your SAS version.&lt;/P&gt;
&lt;P&gt;Some code that we can run to test the issue is helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/214565"&gt;@rkval&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Brief description of the issue:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;original value 22Feb2018:22:04:01.&lt;FONT color="#FF00FF"&gt;485&lt;/FONT&gt; is changed to 22Feb2018:22:04:01.&lt;FONT color="#FF0000"&gt;430&lt;/FONT&gt; when sas dataset is exported as .xlsx using ODS excel and Proc Report combination.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;The last 3 digits are changing automatically in the excel export. This happens with proc export with dbms=xlsx. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;But dbms=&lt;/FONT&gt;&lt;FONT color="#0000FF"&gt;csv output seems to maintain the values correctly.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have tried other formats but they do not work. ODS excel is fine otherwise for all formats.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Seems like this needs to be addressed within SAS software per my knowledge.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Appreciate any feedback and discussions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind Regards.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 20:07:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482026#M286808</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-07-27T20:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel + Proc Report - issue with Datetime22.3 values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482039#M286809</link>
      <description>If you export as character this issue doesn't appear but not a nice workaround.</description>
      <pubDate>Fri, 27 Jul 2018 20:30:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482039#M286809</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-07-27T20:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel + Proc Report - issue with Datetime22.3 values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482050#M286810</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;When changed to number with 3 decimals it displays a completely new value. I want a date time value with hours, minutes, seconds and milliseconds retained as is.&lt;/P&gt;&lt;P&gt;I'm fine with exporting the field as text but posted&amp;nbsp;this&amp;nbsp;so it may be addressed.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 20:47:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482050#M286810</guid>
      <dc:creator>rkval</dc:creator>
      <dc:date>2018-07-27T20:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel + Proc Report - issue with Datetime22.3 values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482052#M286811</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the response. I'm fine with exporting as text.&lt;/P&gt;&lt;P&gt;Just posted the issue so it can be addressed. I was curious as to why the last three digits were being changed. For same date/time upto seconds the last three digits are changed to a same value. Example: For all rows with 13APR2018:19:14:33:--- with the last '---' being milliseconds have same value in the exported file whereas dataset has different values.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 20:53:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482052#M286811</guid>
      <dc:creator>rkval</dc:creator>
      <dc:date>2018-07-27T20:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel + Proc Report - issue with Datetime22.3 values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482053#M286812</link>
      <description>&lt;P&gt;Added additional information to the original post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 20:56:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482053#M286812</guid>
      <dc:creator>rkval</dc:creator>
      <dc:date>2018-07-27T20:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel + Proc Report - issue with Datetime22.3 values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482054#M286813</link>
      <description>&lt;P&gt;You can try and add a TAGATTR statement to the PROC REPORT to force the format but I suspect you'll have the same issue.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/38/143.html" target="_blank"&gt;http://support.sas.com/kb/38/143.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 21:01:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482054#M286813</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-07-27T21:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel + Proc Report - issue with Datetime22.3 values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482081#M286814</link>
      <description>&lt;P&gt;The tag attributes is not working. Found another thread discussing the issue with date time values. Could be the solution for now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/Write-DATETIME-values-to-ODS-EXCEL/td-p/205533" target="_self"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/Write-DATETIME-values-to-ODS-EXCEL/td-p/205533&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 21:57:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482081#M286814</guid>
      <dc:creator>rkval</dc:creator>
      <dc:date>2018-07-27T21:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel + Proc Report - issue with Datetime22.3 values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482084#M286815</link>
      <description>&lt;P&gt;I suspect a big part of this is related to how the two programs store datetime information.&lt;/P&gt;
&lt;P&gt;SAS stores times and datetime values as seconds. The only decimal portion reflects portions of a second.&lt;/P&gt;
&lt;P&gt;EXCEL however stores everything as DAYS. And ALL of the time information is stored as a fraction of a day. So I belive the difference is coming partially as to the available precision and number of bytes available for storage.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You said the CSV appeared to look correct. Did you import that into Excel and examine the value? And compare the numeric value from the CSV import with the ODS Excel created value using NUMERIC not datetime Excel formats (change cell properties to Numeric with about 10 decimals.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 22:16:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482084#M286815</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-07-27T22:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel + Proc Report - issue with Datetime22.3 values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482085#M286816</link>
      <description>&lt;P&gt;You are probably just hitting some limits on precision of the numbers that are transferred.&lt;/P&gt;
&lt;P&gt;The difference between your two values is occurring in the 12 and 13 significant digits of the underlying numbers.&lt;/P&gt;
&lt;PRE&gt;318   data test ;
319     value1 = '22Feb2018:22:04:01.485'dt;
320     value2 = '22Feb2018:22:04:01.430'dt;
321     diff = value1-value2 ;
322     sdate1 = datepart(value1);
323     sdate2 = datepart(value2);
324     stime1 = timepart(value1);
325     stime2 = timepart(value2);
326     edate1 = sdate1-'30DEC1899'd + stime1/'24:00't;
327     edate2 = sdate2-'30DEC1899'd + stime2/'24:00't;
328     ediff = edate1-edate2 ;
329     put (_all_) (=comma32.8 /);
330   run;

value1=1,834,956,241.48500000
value2=1,834,956,241.43000000
diff=0.05499983
sdate1=21,237.00000000
sdate2=21,237.00000000
stime1=79,441.48499990
stime2=79,441.43000007
edate1=43,153.91946163
edate2=43,153.91946100
ediff=0.00000064&lt;/PRE&gt;
&lt;P&gt;You might get more exact data transfer if you converted your SAS datetime values from number of seconds to number of milliseconds (multiple by 1000).&amp;nbsp; That way you could transfer an integer value instead of a floating point value.&amp;nbsp; You could then try to convert back to a datetime value in Excel.&amp;nbsp; Or just remove the milliseconds and store them as a separate integer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or possibly if you split your DATETIME field into separate DATE and TIME values.&amp;nbsp; Then there are more bits available for storing the fractional seconds since it is tacked onto the end of a&amp;nbsp;5 digit&amp;nbsp;integer instead of a 10 digit integer.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 22:27:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482085#M286816</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-07-27T22:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel + Proc Report - issue with Datetime22.3 values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482098#M286817</link>
      <description>&lt;P&gt;That's from 2015 and there have been several major releases/updates since then. May be worth following up with SAS Tech Support.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/214565"&gt;@rkval&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;The tag attributes is not working. Found another thread discussing the issue with date time values. Could be the solution for now.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/Write-DATETIME-values-to-ODS-EXCEL/td-p/205533" target="_self"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/Write-DATETIME-values-to-ODS-EXCEL/td-p/205533&lt;/A&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 22:27:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482098#M286817</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-07-27T22:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel + Proc Report - issue with Datetime22.3 values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482118#M286818</link>
      <description>&lt;P&gt;I'm not clear how we can make that comparison after the export to .csv. The values are in 'General' pretty much text format and cannot be changed to number to compare with output from .xlsx correct?&lt;/P&gt;</description>
      <pubDate>Sat, 28 Jul 2018 00:01:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482118#M286818</guid>
      <dc:creator>rkval</dc:creator>
      <dc:date>2018-07-28T00:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel + Proc Report - issue with Datetime22.3 values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482121#M286819</link>
      <description>&lt;P&gt;Thank you for the response. A warning in the log would be helpful for these limitations. For the time being I'm okay with using the text values.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Jul 2018 00:07:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-Excel-Proc-Report-issue-with-Datetime22-3-values/m-p/482121#M286819</guid>
      <dc:creator>rkval</dc:creator>
      <dc:date>2018-07-28T00:07:59Z</dc:date>
    </item>
  </channel>
</rss>

