Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
I am moving from Tableau to powerBI and i am looking to recreate reate the following visual / matrix / table. But I am struggeling. In general, is a structure like this possible in a PowerBI report? Thanks for your help!
| Last 7 Days | Last 30 Days | Month to Date | Year to Date | Last Year | |
| Impressions | |||||
| Clicks | |||||
| Conversions |
Thanks for your help. I am familiar with DAX and the time intelligence function.
Unfortunately, your reply does not answer my question. I think the tricky part is to have different custom measures with different timeframes as columns, right?
Anyone an idea?
@Anonymous,
This can be achieved by using DAX function like time intelligence function. You can refer to: https://docs.microsoft.com/en-us/dax/time-intelligence-functions-dax.
https://www.sqlbi.com/articles/week-based-time-intelligence-in-dax/
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,
You can do that in Power BI. You will have to create a measure for each expected outputs:
Last n days =
CALCULATE (
SUM ( Table[val] ),
FILTER (
ALL ( Table ),
Table[date]
>= MAX ( Table[date] ) - n
&& Table[date] <= MAX ( Table[date] )
)
)
Then, check MTD and YTD function, many examples can be found on the forum.
Same for LY using SAMEPERIODLASTYEAR function.
Please aslo check microsoft documentation which provide examples :
https://docs.microsoft.com/en-us/dax/sameperiodlastyear-function-dax
Cheers
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 23 | |
| 21 | |
| 19 |
| User | Count |
|---|---|
| 40 | |
| 31 | |
| 18 | |
| 18 | |
| 15 |