I am trying to write a picture format for the asterics. This is what I have so for: proc format; picture stderrf (round) low-high=' 9.999)' (prefix='(') .=' '; picture asterics (round) low - 0.01 = 9.999 (posttext='***') 0.01 < - < 0.05 = 9.999 (posttext='**') 0.1 -high = 9.999 (posttext='*') 0= (posttext='') .=(posttext='') run; Posttext doesn't seem to work. I get the following error message: 187 picture asterics (round) 188 low - 0.01 = 9.999 (posttext='***') ________ 22 76 ERROR 22-322: Syntax error, expecting one of the following: DATATYPE, DECSEP, DIG3SEP, FILL, LANGUAGE, MULT, MULTIPLIER, NOEDIT, PREFIX. Do you happen to have any idea what else I could use?
... View more