Coordinate system dynamic text

573
3
01-12-2023 03:38 AM
Labels (3)
JoaoPinto
New Contributor III

Hello People!

 

 

Can anyone help me find a formula in dynamic text to have x and y equal to the print of a layout performed in arcmap.

 

JoaoPinto_0-1673523319033.png

 

I try this, but without sucess "  ( X ; Y 😞 <dyn type="mapFrame" name="Map Frame" property="upperLeft.x" units="dd" decimalPlaces="2"/> ; <dyn type="mapFrame" name="Map Frame" property="upperLeft.y" units="" format ="standard" decimalPlaces="2" showDirections="False" separator="true"/> "

 

JoaoPinto_1-1673523394112.png

 

 

 

 

Best regards

João

 

0 Kudos
3 Replies
RhettZufelt
MVP Frequent Contributor

RhettZufelt_0-1673556132622.png

(X,Y): <dyn type="mapFrame" name="Map Frame" property="upperLeft.X"
 units="dms" decimalPlaces="0"/> ; <dyn type="mapFrame" 
name="Map Frame" property="upperLeft.Y" units="dms" decimalPlaces="0"/>

 

R_

0 Kudos
JoaoPinto
New Contributor III

Hi @RhettZufelt 

 

 

Thanks for that arcade, but still have a problem without a detail with my (y) need to have the (-)

Like the next example with your code

JoaoPinto_0-1674051711691.png

 

I realy need

 

 

 

Best Regards

João Pinto

 

0 Kudos
RhettZufelt
MVP Frequent Contributor

Sure, but if you do, you don't want the N/W in there as it means the same thing.

This seems to work.  

 

(X,Y): <dyn type="mapFrame" name="Map Frame" property="lowerLeft.x" units="dms" decimalPlaces="2" showDirections="False"/>   <dyn type="mapFrame" name="Map Frame" property="lowerLeft.y" units="dms" decimalPlaces="2" showDirections="False"/>

 

 

R_

0 Kudos