I have a table [Delays] with a column called [Delay]. I also have a table [Ranges] with three columns: [Range], [From] and [To]. I need to create a column in the [Delays] table to display the Range value from the [Ranges] table according to this criteria: 'Delays'[Delay] >= 'Ranges'[From] && 'Delays'[Delay] < 'Ranges'[To].
Help is greatly appreciated.