Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi,
I have made a column in my table and added it to visualization. It's name is "Short Descr". I have changed it to "Deliverables". I want to change it automatically every month like "Deliverables | February", if the current month is March.
Solved! Go to Solution.
Hi @IshaDahra,
It's not possible to give dynamic name to a column header, you can give table a dynamic title though using below DAX
Dynamic Header =
"Deliverables | " &
FORMAT(EOMONTH(TODAY(), -1), "MMMM")
Not add this measure to Table title
if you still want to show dynamic title, create a card visual and place it above the column name and hide actual column name.
"Deliverables | " & FORMAT(EOMONTH(TODAY(), -1), "MMMM")
🌟 I hope this solution helps you unlock your Power BI potential! If you found it helpful, click 'Mark as Solution' to guide others toward the answers they need.
💡 Love the effort? Drop the kudos! Your appreciation fuels community spirit and innovation.
🎖 As a proud SuperUser and Microsoft Partner, we’re here to empower your data journey and the Power BI Community at large.
🔗 Curious to explore more? [Discover here].
Let’s keep building smarter solutions together!
You cannot make a native table/matrix column header fully dynamic with a DAX measure when the column is a regular field like 'Table'[Short Descr].
If this is just for presentation, you can rename the field in the visual, but it stays static.
This is usually the cleanest workaround.
Create a measure like:
Dynamic Header =
"Deliverables | " & FORMAT ( EOMONTH ( TODAY(), -1 ), "MMMM" )
Hi @IshaDahra ,
as suggested by others, creating dynamic column headers is not posssible in PowerBI.
However if your ask is to show current month then there are multiple ways to do this.
You can create a measure below for title and show that in table visual.
Dynamic Title=
"Deliverables | " & FORMAT(EDATE(TODAY(), -1), "MMMM")
Please give kudos or mark it as solution once confirmed
Thanks and Regards,
Praful
Hi @IshaDahra ,
We haven’t received a response from your end yet. Please let us know whether the issue has been resolved or if you’re still facing any difficulties. Feel free to reach out if you need further assistance.
Hi @IshaDahra ,
If you get a chance, please review the response shared by @cengizhanarslan , @Praful_Potphode and let us know if it aligns with your expectations. Should you need any additional details or clarification, feel free to let us know.
Thank you for your valuable input.
Regards,
Yugandhar.
Hi @IshaDahra ,
as suggested by others, creating dynamic column headers is not posssible in PowerBI.
However if your ask is to show current month then there are multiple ways to do this.
You can create a measure below for title and show that in table visual.
Dynamic Title=
"Deliverables | " & FORMAT(EDATE(TODAY(), -1), "MMMM")
Please give kudos or mark it as solution once confirmed
Thanks and Regards,
Praful
You cannot make a native table/matrix column header fully dynamic with a DAX measure when the column is a regular field like 'Table'[Short Descr].
If this is just for presentation, you can rename the field in the visual, but it stays static.
This is usually the cleanest workaround.
Create a measure like:
Dynamic Header =
"Deliverables | " & FORMAT ( EOMONTH ( TODAY(), -1 ), "MMMM" )
Hi @IshaDahra,
It's not possible to give dynamic name to a column header, you can give table a dynamic title though using below DAX
Dynamic Header =
"Deliverables | " &
FORMAT(EOMONTH(TODAY(), -1), "MMMM")
Not add this measure to Table title
if you still want to show dynamic title, create a card visual and place it above the column name and hide actual column name.
"Deliverables | " & FORMAT(EOMONTH(TODAY(), -1), "MMMM")
🌟 I hope this solution helps you unlock your Power BI potential! If you found it helpful, click 'Mark as Solution' to guide others toward the answers they need.
💡 Love the effort? Drop the kudos! Your appreciation fuels community spirit and innovation.
🎖 As a proud SuperUser and Microsoft Partner, we’re here to empower your data journey and the Power BI Community at large.
🔗 Curious to explore more? [Discover here].
Let’s keep building smarter solutions together!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 64 | |
| 32 | |
| 31 | |
| 27 |