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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Variable in column name in summarize table

I am creating a calculated table by summarizing date, country, branch and sales amount from Table Sales

 

Branch_Sales_calc =

var branch =  'Parameter'[Branch]  -- value is from query parameter

 
RETURN SUMMARIZE(
'Sales','Sales'[Date], 'Sales'[Country], "BranchName",SUMX(FILTER('Sales','Sales'[Branch]=branch) ,'Sales'[Amount]))
)

If I change
the column name "BranchName" to variable branch I get the error - Function SUMMARIZE expects a column name as argument number 4
 
Is it possible to have column name based on query parameter or any dynamic value?
 
1 ACCEPTED SOLUTION

@Anonymous Currently it is not supported to change the column name dynamically with the parameter.

 

As a workaround, I suggest using fixed "Sales" or "Total Sales" as the name of this column to indicate what this column's data describes. Then format the visual's title conditionally with the field 'Parameter'[Branch] to let users know which branch this data represents for.

120203.jpg

 

Kindly let me know if this helps.

 

Community Support Team _ Jing Zhang
If this post helps, please consider Accept it as the solution to help other members find it.

View solution in original post

7 REPLIES 7
amitchandak
Super User
Super User

@Anonymous , I doubt you can use a slicer value or parameter in a new table creation

 

also try changing var like and try

var branch =  max('Parameter'[Branch] )

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
Anonymous
Not applicable

I have tried, it does not work. 

@Anonymous Currently it is not supported to change the column name dynamically with the parameter.

 

As a workaround, I suggest using fixed "Sales" or "Total Sales" as the name of this column to indicate what this column's data describes. Then format the visual's title conditionally with the field 'Parameter'[Branch] to let users know which branch this data represents for.

120203.jpg

 

Kindly let me know if this helps.

 

Community Support Team _ Jing Zhang
If this post helps, please consider Accept it as the solution to help other members find it.

mahoneypat
Microsoft Employee
Microsoft Employee

Oh.  You can't use a variable where "BranchName" is.  Why is that needed?  Why not use a fixed name that reflects what is in that column like "TotalSales"?  If needed, you could add another column to your table that has the branch name on every row.

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Anonymous
Not applicable

The report I want to build needs a column name on matrix table that based on user selection. That is why I need a dynamic column name

mahoneypat
Microsoft Employee
Microsoft Employee

Is Parameter a text value?  Or is it a 1-row/1-column table?  If a table, you need to aggregate it with MIN('Parameter'[branch]) for example.

 

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Anonymous
Not applicable

Yes, it is a 1-row/1-column table, text value, I have tried aggregation MIN butstill get the same error - Function SUMMARIZE expects a column name as argument number 4.

 

 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.