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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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