Solved! Go to Solution.
"<BOL><UND>" + [Location_I] + "</UND></BOL>"
"<BOL><UND>" + [Location_I] + "</BOL></UND>"
"<BOL><UND>" + [Location_I] + "</UND></BOL>"
"<BOL><UND>" + [Location_I] + "</BOL></UND>"
New to Python (or for that matter VBScript). The instructions above seem straight forward but i am unable to get it to work. The following is what I've tried to do
"<BOL><UND>" + [Section_Number] + "<UND><BOL>" + '\n ' + [Planned_Plants] + '\n ' + [Acres_numeric] + ' ac'
That would hopefully produce the following result
3
1,110
1.3 ac
Below is the resulting label on my map:
<BOL><UND>3<UND><BOL>
1,110
1.3 ac
I'm obviously missing something but unable to identify what I'm doing wrong. Any help would be much appreciated.
Try:
"<BOL><UND>" + [Section_Number] + "</UND></BOL>" + '\n ' + [Planned_Plants] + '\n ' + [Acres_numeric] + ' ac'
You are closing the XML tags incorrectly. Instead of <UND>, you need </UND>.