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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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] )

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
Employee
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
Employee
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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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