Hello,
I have a set of node data.
Some of those nodes will have an empty attribute. I am trying to populate them (call it "config") based on previous or next feature.
The condition is should be somewhere along these lines:
If Feature[-1] exists AND Feature [+1] does not exist, then Config = feature[-1].Config
Adversely,
Feature[-1] does not exist AND Feature [+1] exists, then Config = feature[+1].Config
If both exists, then Config = feature[-1].Config.
I am trying to write out the conditional statement and have adjacent feature checked. The conditions only allow for checking if an attribute is null, missing or has an empty string. I don't seem to have any option for the existence of a Feature itself.
Any one have any idea how I can go about that? Thanks!