Forum Discussion

EZam86's avatar
EZam86
New Member
2 years ago
Solved

Power Query EndDate-StartDate > 2 years

Hi,   I have a Power Query which produces an expanded list of information and in that information I have dates from the start and end date columns in my table. Im trying to creat a formula to work ...
  • vgarciasouza's avatar
    2 years ago

    an you create a custom column with the formula:

     

    if Duration.Days([endDate] - [startDate]) > (365 * 2) then "continue" else "start"

     

    and then filter the ones that you need.