Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
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
Solved! Go to Solution.
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/
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/
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
69 | |
55 | |
36 | |
31 |
User | Count |
---|---|
87 | |
62 | |
61 | |
49 | |
45 |