Hello All,
When a point feature with Object ID 299 is selected, two other records from the same attribute table should be retrieved and displayed in a pop-up as a secondary table on the same Pop-up. (ArcGIS Pro). I am employing the if statement Arcade Expression, but it returns false.
The following is a screenshot of the code and embedding of the expression into HTML for display in the pop-up. This is the code I am using.
Any tips?
Thanks
if($feature.OBJECTID==299){
return $feature.OBJECTID==297 && $feature.OBJECTID==300 && $feature.USER_C_UNI_VLAN_ID
}