Hello! I had a quick look, but couldn't find any questions similar to this, so hopefully I'm not bringing up old questions. What is the reason the the POINT= option only works when set to a set to equal a variable (eg the obsnum below), rather than just setting it to equal an integer? eg why does this work data OJOSData; obsnum=6; set grades point=obsnum; output; stop; run; but this doesn't? data OJOSData; set grades point=6; output; stop; run; I was just wondering what the underlying reason is. Many thanks Oliver PS the SAS University software is a godsend for testing things like this that puzzle me
... View more