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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
ahjamil
Frequent Visitor

Dynamic Column Name

I have a table called "Cost" that has Items and Monthly Costs:           

ItemCost YearJan_Cost   Feb_Cost  Mar_Cost  Apr_Cost May_Cost
A20221010111214
B20221415151617
C20221719212019

Currently I have a measure (There are a lot of these measures and I need them for every Product):

SumCost = sumx(filter(cost, Cost[Cost YEAR]=2022), Cost[Jan_Cost])

I have to change the measure to dynamically pick up the column, so that I only change one value every month and all my measures start picking up the required column like:
Var ColName = "Jan_Cost"
SumCost = sumx(filter(cost, Cost[Cost YEAR]=2022), Cost[ColName])

Any help will be appreciated. 

1 REPLY 1
AlexisOlson
Super User
Super User

It's almost always a better option in these sorts of situations to unpivot your month columns so that your data looks like this instead:

AlexisOlson_0-1659562474857.png

 

Then SumCost is just SUM ( Cost[Cost] ).

 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.