Hi guys, I have a set of data as shown below which has from and to range and a corresponding value-
I want to compare from and to range from below table and enter the value if the range is in between interval as shown below-
Please help me out in finding a solution, I have loads of similar data.
Input Data | ||
Range From | Range To | Value |
0.00 | 46.35 | 3.8707 |
46.35 | 72.17 | 2.4149 |
72.17 | 458.61 | 2.4149 |
458.61 | 486.38 | 4.2 |
486.38 | 631.56 | 10.1 |
I want to compare from and to range from below table and enter the value if the range is in between interval as shown below-
Range From | Range To | Required Answer |
0.00 | 46.35 | 3.8707 |
46.35 | 50.89 | 2.4149 |
50.00 | 50.89 | 2.4149 |
50.89 | 72.17 | 2.4149 |
72.17 | 72.17 | 2.4149 |
72.17 | 458.61 | 2.4149 |
458.61 | 486.38 | 4.2 |
486.38 | 580.00 | 10.1 |
580.00 | 631.56 | 10.1 |
Please help me out in finding a solution, I have loads of similar data.