As Hanzo said, you can find the angle (in degrees) with DEG(ATAN(y,x)). However, be mindful that values range from -180 to 180 degrees. In case you want the values to range from 0 to 360 degrees, you can easily set a conditional like this... STICK OUT X,Y ANG=DEG(ATAN(Y,X)) IF ANG<0 THEN INC ANG,360 ENDIF