Forum Discussion

samihuq's avatar
samihuq
Helper III
10 years ago
Solved

Create Approximate Match Relationship

Hi There, I have got two tables. Table A has  Date and Quantity Column as bellow:   Date Qty 01-Jun-15 12246443 02-Jun-15 12737355 03-Jun-15 11901529 04-Jun-15 11574494 05-J...
  • Anonymous's avatar
    Anonymous
    10 years ago

    There is no way to delete replies here!?  My answer was... not exactly on target :(

     

    You need a way to calculate the "most recent rate".  That is the last date in rate table, which is less than (or equal?) to the date in your quantities table.

     

    Maybe something like... ?

     

    =CALCULATE(
         LASTNONBLANK(Rates[Date], MIN(Rates[Rate]),

         FILTER(Rates, Rates[Date] <= MAX(Quantites[Date]))
    )