Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Everyone,
I have a column with some dates or periods, I need a calculated column with the parallel period, for example teh first result has to be January, 2017, the table is like this:
Date
january, 2018
february, 2018
march, 2018
I am using this formula but the result is a blank column
I will appreciate some help
Thanks!
Solved! Go to Solution.
@Anonymous
Hi, try with this
Fecha1YPrev = EDATE(Table1[Fecha],-12)
Regards
Victor
@Anonymous,
Or you can create a calculate column using DAX below and then change the format with (MMMM yyyy):
Parallel Perdiod = DATE(YEAR('Date'[Date]) - 1, MONTH('Date'[Date]), DAY('Date'[Date]))
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous
Hi, try with this
Fecha1YPrev = EDATE(Table1[Fecha],-12)
Regards
Victor