Hello everyone,
I am trying to pull owner information from a hosted table (PropertyOwnerDetails) using the Parcel number (parcel_number in Parcels_Carlisle, map in PropertyOwnerDetails, both fields are String) as the common link. I have tried different solutions but just cannot get it to work. I do not get any error message - the field just remains blank.
Any help would be appreciated.
Thanks!
Solved! Go to Solution.
Is the parcel number field actually a number field type (like an integer)? Our parcel numbers are stored as text. If it is a text field you need to enclose your parcel number in quotes. So your query builder field should look like:
concat("map='",${parcel_number},"'")
Try to do a helper field with your where clause outside of your pulldata calculation
whcl: concat("map = ",${parcel_number})
and then put ...FeatureServer/0", ${whcl})
Calculations in side pulldata functions sometime cause issues
Is the parcel number field actually a number field type (like an integer)? Our parcel numbers are stored as text. If it is a text field you need to enclose your parcel number in quotes. So your query builder field should look like:
concat("map='",${parcel_number},"'")
@TylerGraham2 you are absolutely right. That was indeed the solution that was offered by Esri tech support.
Additionally, we also realized that the table I was trying to pull the records from is incomplete - all the tax-exempt properties were excluded because it came from our tax assessor. I was testing the app sitting within the Borough Hall (a tax-exempt property) and no value was returned 😎
Thank you all!