Original User: frankv3
it is still not calculating in ArcMap, reports the Error 000989 - Python Syntax Error , this is the calculation code (saved out)
MapNum = str(!MAP_BOOK!)
PageNum = str(!PAGE!)
if len(PageNum) == 1:
PlatLink = r"\\Covsdesrv\GIS Common\Plats\00%s000%s.TIF"%(MapNum,MapNum,PageNum)
elif len(PageNum) == 2:
PlatLink = r"\\Covsdesrv\GIS Common\Plats\00%s00%s.TIF"%(MapNum,MapNum,PageNum)
elif len(PageNum) == 3:
PlatLink = r"\\Covsdesrv\GIS Common\Plats\00%s0%s.TIF"%(MapNum,MapNum,PageNum)
__esri_field_calculator_splitter__
PlatLink
it runs fine in the IDLE window as before, anyone know what i'm doing wrong?