The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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
User | Count |
---|---|
69 | |
65 | |
63 | |
48 | |
28 |
User | Count |
---|---|
112 | |
82 | |
66 | |
48 | |
43 |