Thank you! Because of your posts I looked at it again and found that it was not a blank row, but rather I had to specify the type/shape of the matrix. It works now! proc distance data=roaddata2 out=distmatrix method=Euclid shape=square; var interval (FACT_AADT/ std=std); id SEGMENT_ID; run;
... View more