Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
how to Enter a Dynamic Title to a Table and a Matrix, like the current date
Solved! Go to Solution.
This is brand new just this past week with the April 2019 build of Power BI. Read this article, which will explain how conditional format titles, or expression based titles, can be used. You must have the April 2019 build. Won't work with anything earlier.
I believe it needs to be text, so a measure like this will simply put today's date in the title if you select this measure for the title.
Today for Title = "Today is " & FORMAT(TODAY(),"MMMM DD, YYYY")
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingThis is brand new just this past week with the April 2019 build of Power BI. Read this article, which will explain how conditional format titles, or expression based titles, can be used. You must have the April 2019 build. Won't work with anything earlier.
I believe it needs to be text, so a measure like this will simply put today's date in the title if you select this measure for the title.
Today for Title = "Today is " & FORMAT(TODAY(),"MMMM DD, YYYY")
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingWow! that is awesome, thanks a lot!