🔒 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 08-24-2018 12:46 PM
(2493 views)
Hello,
I always have the same problem no matter what I try.
Could someone please tell me what's the mistake i'm making ?
I attached a simplified example:
Thanks.
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Please post your code as text directly into the forum, not an attachment.
You have a weird symbol (in red below) in your code that should be a dollar sign but is something else. Replace that with a dollar sign and it works fine.
DATA entree ; INPUT Nom § ScoreM ScoreF ; DATALINES ; Sam 15 18 Titi 19 12 Marc 12 16 PROC PRINT DATA=entree ; RUN ;
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Please post your code as text directly into the forum, not an attachment.
You have a weird symbol (in red below) in your code that should be a dollar sign but is something else. Replace that with a dollar sign and it works fine.
DATA entree ; INPUT Nom § ScoreM ScoreF ; DATALINES ; Sam 15 18 Titi 19 12 Marc 12 16 PROC PRINT DATA=entree ; RUN ;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Now I know for the next time.
Thank you!
Thank you!