def myfunction(docno): docno = str(docno).strip() # remove any trailing spaces if len(docno).strip() == 0: val = "" else: # the "r" is needed val = r"V:\Eng\Land Management\Easements\Scanned Documents\" + docno + ".tif" return val
myfunction( !DOC_NO! )
return r"V:\Eng\Land Management\Easements\Scanned Documents\" + docno + ".tif"
def myfunction(docno) : if len(docno)== 0 : return "" else: return "V:\Eng\Land Management\Easements\Scanned Documents\" + docno + ".tif"
Los miembros registrados pueden publicar, seguir actualizaciones y más. ¿Nuevo aquí? Regístrate gratis.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.