Pro 2.8.2
I am trying to get my Popup Title to properly display Quadrant Bearing coordinates such as S84°07'50"W.
Using the parcel fabric's default popup expression, this looks like S84°0750'W.
A snippet of the default expression looks like:
quadbearing=prefix+degrees+"°"+text(minutes,"00")+"'"+text(seconds,"00")+"''"+postfix
If I change it to look like this:
quadbearing=prefix+degrees+"°"+text(minutes,"00")+TextFormatting.SingleQuote+text(seconds,"00")+TextFormatting.DoubleQuote+postfix;
The output is closer, S84°0750"W, but it is missing the Single Quote after the minutes.
I have even tried just a simple expression like:
{insertrandomfield} + "'"
or
{insertrandomfield} + TextFormatting.SingleQuote
and neither will display the single quote in the Title. They just display the field attribute.
The single quote displays fine using the exact same expression in the Attributes panel.
I put this in ArcGIS Pro and not in Parcel Fabric because it doesn't seem unique to the Parcel Fabric. But, @AmirBar-Maor, do you have any ideas for this? Either way, the built in default fabric popup expression for lines isn't working right for me.