Forum Discussion
CarlsBerg999
5 years agoHelper V
Add months to date
Hi, Im trying to add dates in a calculated column to a date. For example, I have date 1.5.2021 in Column A and 24 months in column B. I want the result to be 1.5.2023 in column C. However, for so...
- 5 years ago
This can be quite tricky as the dateadd function requires a column reference and that column needs to have the date that would be the result of your addition. The simplest way to do this is to use the EDATE function so some thing like
NewDate = EDATE([Column A],[Column B])
# EDATE only works for months but that works fine in your case.
selimovd
5 years agoMost Valuable Professional
Hey CarlsBerg999 ,
it should work with DATEADD. Try it like this as a calculated column:
MyNewDate = DATEADD('Date'[Date], 24, MONTH)
If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
Best regards
Denis
Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic
CarlsBerg999
5 years agoHelper V
Hi,
For some reason the calculated column returns blank when i do this. The date column is formatted as Date but for some reason refuses to accept any additions in months. I tried adding 2 months but it only worked for one row out of 250. Adding 3 months worked for 2 rows..