- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
This is the log said , on the fifth line, the _N_ means where the error happend ? Thank you.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Always (as in ALWAYS) post logs by copy/pasting into the proper subwindow, as this makes it easier to read and allows us to quote it and insert comments.
_N_ is an automatic variable that holds the number of the current iteration of the data step. When reading text files, this usually correlates with the line that is read, which is also the case with your code (invalid data in line 4).
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
_N_ = 4
means that the error happened on the 4th input record.
In the future, would you please help us out and copy the log as TEXT and then paste it into the window that appears when you click on the </> icon. This preserves the formatting of the log and makes it more readable. Thank you.
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Always (as in ALWAYS) post logs by copy/pasting into the proper subwindow, as this makes it easier to read and allows us to quote it and insert comments.
_N_ is an automatic variable that holds the number of the current iteration of the data step. When reading text files, this usually correlates with the line that is read, which is also the case with your code (invalid data in line 4).
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you for your help .