I have two data sources, the first one has a list of CPT codes, and the other one has a list of range and a category name for that range of values. I'm trying to write a workflow which will loop through each of the CPT codes in the first data source and search if it falls between any of the start and end points in the second data source and retrieve the Category value.
Data source 1
Data source 2
| Start | End | Category |
| 10000 | 20000 | General Medicine |
| 20001 | 40000 | Anesthesia |
| 90000 | 99999 | Radiology |