Forum Discussion

dolevh's avatar
dolevh
Helper II
4 years ago
Solved

Dates Column with two different columns

Table Name: Projects

 

ProjectID      Active   StartDate   EndDate   New Column 
1   1   1/1/2019   1/3/2021   1/3/2021
2   1   5/5/2019   (Blank)   5/5/2020
3   1   3/7/2020   3/9/2021   3/9/2021
4   1   1/7/2020   (Blank)   1/7/2021
5   1   2/9/2020   (Blank)   2/9/2021
6   1   10/9/2020   5/1/2021   5/1/2021
7   1   11/11/2020   6/6/2021   6/6/2021
8   0   12/01/2021   (Blank)   (Blank)
9   0   7/6/2021   (Blank)   (Blank)

 

It's my data, I'm looking for a solution to this situation.  

If my Projects[End Date] is Blank so I will take the column Projects[Start Date] + 365 days only if Projects[Active] = 1 if is Projects[End Date] with the date so I will keep these dates in the new column.

  • Hi dolevh ,

     

    Try this in a custom column:

    if [EndDate] = null and [Active] = 1 then Date.AddDays([StartDate], 365)
    else [EndDate]

     

    Pete

2 Replies

  • Hi dolevh ,

     

    Try this in a custom column:

    if [EndDate] = null and [Active] = 1 then Date.AddDays([StartDate], 365)
    else [EndDate]

     

    Pete