Forum Discussion

c0c02ll's avatar
c0c02ll
Regular Visitor
4 years ago
Solved

DAX Expression

I want to write expression that will give you an END date when you have the START date and you add varying days.  Example...START date 12/10/21, 5 days from START would be END date 12/15/21.  

  • c0c02ll 

    You can simple add the days you need. If you are doing it in a calculated column then

    End Date = TableName[Start Date] + 5 

    if its a measure then

    End Date = MAX(TableName[Start Date]) + 5



1 Reply

  • c0c02ll 

    You can simple add the days you need. If you are doing it in a calculated column then

    End Date = TableName[Start Date] + 5 

    if its a measure then

    End Date = MAX(TableName[Start Date]) + 5