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"
サインインしたメンバーは投稿、更新のフォローなどができます。初めてですか?無料アカウントを登録してください。
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.