Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
cplesner
Helper III
Helper III

Calculated Column "Months Ago"

Hi

 

Can someone help me with the syntax for creating a calculated column that shows the number om months ago from today 12 months in both "directions". So current month shows 0, Last month = 1 and Next month = -1.

Eventually i would like to end up with an attribute in the time dimension where i can select

 

"more than 12 months into the future"

-12

-11

-10

...

...

10

11

12

"more then 12 months ago"

1 ACCEPTED SOLUTION
v-yuezhe-msft
Employee
Employee

Hi @cplesner,

You can create the calculated column using the following DAX .

 

Column = IF(MONTH(Table[Date])=MONTH(TODAY()) && YEAR(Table[Date])=YEAR(TODAY()),0,IF(Table[Date]<TODAY(),DATEDIFF(Table[Date],TODAY(),MONTH),(-1)*DATEDIFF(TODAY(),Table[Date],MONTH)))



1.PNG

Thanks,
Lydia Zhang

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yuezhe-msft
Employee
Employee

Hi @cplesner,

You can create the calculated column using the following DAX .

 

Column = IF(MONTH(Table[Date])=MONTH(TODAY()) && YEAR(Table[Date])=YEAR(TODAY()),0,IF(Table[Date]<TODAY(),DATEDIFF(Table[Date],TODAY(),MONTH),(-1)*DATEDIFF(TODAY(),Table[Date],MONTH)))



1.PNG

Thanks,
Lydia Zhang

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
opticshrew
Resolver II
Resolver II

Hi there,

 

I think what you are looking for is this function: Datediff()

 

You can find more information about it here: https://msdn.microsoft.com/en-gb/library/dn802538.aspx

 

Thanks,

J

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.