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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Time intelligence function

Hello Community,

 

I  have a data that consists on date column  with only month and year,,,, but i wanted to use time intelligence function,, Is it possible,, If possible, Can you suggest me ?? 

 

Thanks in advance 

1 ACCEPTED SOLUTION
MattAllington
Community Champion
Community Champion

Yes, but you can't use the inbuilt functions.  You need to write custom time intelligence. Create a month calendar table with the same month-year column as your data table (one column, such as mmm-yyyy). Make sure your calendar table has a monthID column (integer, starting at 1 and incrementing by 1 for every month in your calendar, never resetting). You can then use this column in your formulas, like this

same period prior year = 

CALCULATE([measure],FILTER(ALL(CALENDAR),calendar[monthID] = max(calendar[monthID])-12))

i have an article here that will help you https://exceleratorbi.com.au/dax-time-intelligence-beginners/



* Matt is an 8 times Microsoft MVP (Power BI) and author of the Power BI Book Supercharge Power BI.
I will not give you bad advice, even if you unknowingly ask for it.

View solution in original post

1 REPLY 1
MattAllington
Community Champion
Community Champion

Yes, but you can't use the inbuilt functions.  You need to write custom time intelligence. Create a month calendar table with the same month-year column as your data table (one column, such as mmm-yyyy). Make sure your calendar table has a monthID column (integer, starting at 1 and incrementing by 1 for every month in your calendar, never resetting). You can then use this column in your formulas, like this

same period prior year = 

CALCULATE([measure],FILTER(ALL(CALENDAR),calendar[monthID] = max(calendar[monthID])-12))

i have an article here that will help you https://exceleratorbi.com.au/dax-time-intelligence-beginners/



* Matt is an 8 times Microsoft MVP (Power BI) and author of the Power BI Book Supercharge Power BI.
I will not give you bad advice, even if you unknowingly ask for it.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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