Does the example dataset you provided have wrong values matched?
Create column dry weight g/l and rename Time h to time h in reflectance data:
![jthi_2-1642007496381.png jthi_2-1642007496381.png](https://community.jmp.com/t5/image/serverpage/image-id/38950iD77DE4CC4E6ACD37/image-size/medium?v=v2&px=400)
Concatenate the dry weight data to that:
![jthi_1-1642007367227.png jthi_1-1642007367227.png](https://community.jmp.com/t5/image/serverpage/image-id/38949i7A6235BB0E46F789/image-size/medium?v=v2&px=400)
Select reactor and Time h column and Sort by them.
Select missing value in dry weight -> select matching cells -> invert selection
Now you can jump around the table to find closest values:
![jthi_3-1642007574151.png jthi_3-1642007574151.png](https://community.jmp.com/t5/image/serverpage/image-id/38951iE02F7FABACD5476C/image-size/medium?v=v2&px=400)
At this point you could create some helping formulas or scripts to calculate the nearest value for example something like this to further reduce the data:
Names Default To Here(1);
dt = Current Data Table();
r = dt << Get Selected Rows; //selecting of wanted rows could be done in script instead of datatable
r_min = r - 1;
r_max = r + 1;
dt << Subset(rows(Sort List(r||r_min||r_max)), Selected Columns(0));
![jthi_8-1642008350940.png jthi_8-1642008350940.png](https://community.jmp.com/t5/image/serverpage/image-id/38956iE82475BFF65AEA7C/image-size/medium?v=v2&px=400)
At this point you could most likely copy-paste the dry weight time values to new column and create formula to calculate closest row.
![jthi_9-1642008571936.png jthi_9-1642008571936.png](https://community.jmp.com/t5/image/serverpage/image-id/38957iEEA2DB87A8D56D1B/image-size/medium?v=v2&px=400)
This is what join nearest rows would return when Join is used:
![jthi_4-1642007727491.png jthi_4-1642007727491.png](https://community.jmp.com/t5/image/serverpage/image-id/38952i5EDF1D35FCAD193E/image-size/medium?v=v2&px=400)
With Update it wont create as many messy columns:
![jthi_10-1642008595468.png jthi_10-1642008595468.png](https://community.jmp.com/t5/image/serverpage/image-id/38958i3D589C81355C1CCA/image-size/medium?v=v2&px=400)
UI of the tools seems to have some problem on table selection... and user has to make sure correct tables or selected or the tool will do self-join.
-Jarmo