Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
kleighton
Helper II
Helper II

Table Column headers based on measure

Hi

 

I have the following table showing current stock balance and the forceasts and balances over the next 3 months.

kleighton_0-1659442583095.png

I would like to change the column headers to use the dynamic Month name instead of +1, +2,+3 etc. For example, i could use a measure to return the desired name.

TMN+2 = (Format(EOMONTH(TODAY(),+2),"MMM"))&" " & "Bal."
 
kleighton_0-1659518079950.png

 

Is there any way to use dynamic values or measures as column header values??

3 REPLIES 3
v-xiaotang
Community Support
Community Support

Hi @kleighton 

Thanks for reaching out to us.

You can refer to this solution, Solved: Re: Dynamic column header in Matrix - Microsoft Power BI Community

 

 

Best Regards,

Community Support Team _Tang

If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@kleighton , You can have measures like

 

next 3 and last 3  =
var _max = eomonth( today() ,3)
var _min = date(year(_max), month(_max)-6,1)
return
CALCULATE(SUM(Sales[Sales Amount]),filter(date, date[date] <=_max && date[date] >=_min))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

HI, thanks for your reply!

 

My main question is regarding the table column names, how can i change them to show the dynamic month name? or is it even possible?

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.