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

Get Fabric certified for FREE! Don't miss your chance! Learn more

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
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.