Forum Discussion
EZam86
2 years agoNew Member
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 ...
- 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.
vgarciasouza
2 years agoFrequent Visitor
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.