Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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!