Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

DATE RANGE LOOKUP

Hello everyone,   I have two tables like the example below. I want to look up the Campaign into my Product table by the condition that the Launch date is in the period of a Campaign.   I want to ...
  • iamprajot's avatar
    8 years ago
    Here it is, Create a Calculated Column
    = CALCULATE(VALUES(Campaign[Campaign]),FILTER(Campaign,'Product'[Launch Date]<Campaign[Stop] && 'Product'[Launch Date]>Campaign[Start]))