You are not logged in. You can browse but not post. Login or Register by clicking 'Login or Register' at the top-right of this page. For more information on Statalist, see the FAQ.
Nothing reproducible here -- after 92 posts you should know to give examples we can reproduce -- but
Code:
display A
will show the first value of any variable called A (or that uniquely abbreviates to A if you haven't disabled variable name abbreviation) -- if and only if such a variable exists. But your code in fact tells all we need to know. Clearly you have a variable ACT. If Stata doesn't squawk at
Code:
display A
what you typed is equivalent to
Code:
display ACT
which will always be interpreted as
Code:
display ACT[1]
As the good manual tells you, scalars and variables share the same namespace. So to insist that it is scalar A that you want to see, you need to tell Stata
Comment