Forum Discussion

Tob_P's avatar
Tob_P
Helper V
3 years ago
Solved

Date.AddYears based on interval in another column

Hi,

 

Related this Solved: Re: DATEADD issue - Microsoft Fabric Community

 

I'm looking for some help on a custom column in query editor. I would like to calculate a future date, based on my original date column, X number of years in the future based in an interval column. Example data and expected format below. If 0 is in the interval column, then there should be no future date output

 

Start DateIntervalExpected End Date
01/05/20230 
25/06/2022425/06/2026
04/10/2022204/10/2024
19/06/2021119/02/2022
15/10/2020415/10/2024
04/07/2022504/07/2027
21/07/20210 
  • Hi,

    Add a new column

    if [Interval]>0 then Date.AddYears([Start Date],[Interval]) else null

     Stéphane

2 Replies

  • Hi,

    Add a new column

    if [Interval]>0 then Date.AddYears([Start Date],[Interval]) else null

     Stéphane