🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 10-31-2018 03:17 PM
(62604 views)
I would like to convert z format datetime20 to datetime19
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Code to change in place:
proc datasets library=yourlib; modify yourdataset; format yourvariable datetime19.; quit;
Or open the column view of the data set in the SAS explorer click on the variable name and modify the format.
Or open the tableview of the data set in edit mode, click on the column heading to bring up the variable properties box and change the format.
Or rerun the step that created the data set and change the previous format to the one you want.
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Code to change in place:
proc datasets library=yourlib; modify yourdataset; format yourvariable datetime19.; quit;
Or open the column view of the data set in the SAS explorer click on the variable name and modify the format.
Or open the tableview of the data set in edit mode, click on the column heading to bring up the variable properties box and change the format.
Or rerun the step that created the data set and change the previous format to the one you want.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Did a format statement not work?