A period is required to end the name of a macro variable, usually when appending text to the value of the macro variable. No period is required if there is a separator (like a space or other character that cannot be in a macro variable name).
So no period is required here
x = ¯ovarname+7;
but it's also not wrong to put a period here.
A period is required here
x = ¯ovarname.2;
so the 2 is appended to the value of ¯ovarname.
--
Paige Miller