I need to pass to function VLOOKUP the nearest value to cell D242 as lookup_value. For example I have date 30.08.12 as lookup_value. If there is no value 30.08.12 then search for nearest value to 30.08.12 which is less than 30.08.12. In this case it would be 29.08.12.
=VLOOKUP(D242;Table_crs.accdb[[Date]:[Sell]];3;FALSE)
Where
1. D242 is lookup_value
2. Table_crs.accdb[[Date]:[Sell]] is table_array
3. 3 is col_index-_num
4. FALSE is [range_lookup]
