I have two datasets, where one (a) is holding x/y/z coordinates and the other (b) contains a distance value.
I created a line, based on the coordinates from dataset a, and after densifying the line used a measure to get values I can compare to the distance values provided by dataset b.
The distance and measure values are not perfect matches, and I would like to accumulate the attributes from dataset b to dataset a based on an a rule like the following:
IF 'ref_length' >= 'start_length' AND 'ref_length' < 'end_length'
This is what I have so far