Forum Discussion

selpaqm's avatar
selpaqm
Icon for Helper V rankHelper V
6 years ago
Solved

Compare Data within related dates

Hi,   can we have a chance to compare values within related dates?  Table 1 and Table has relation with names table also which is unique. how can we find out results for dates? for example Result...
  • selpaqm's avatar
    6 years ago

    İ have solved my own problem with below calculated column formula.

     

     

    Column2 = CALCULATE(VALUES(Table1[Currency]),FILTER (
    Table1,
    Table1[Valid From] <= 'Table 2'[Date] &&
    Table1[Valid To] > 'Table 2'[Date] && 'Table 2'[Name]=Table1[Name]
    ))<div> </div>