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
Rohiniv25
New Member

renaming the content in the column only for visual

I have a coloumn named grouping as Bi, 1st , 2nd while showing that in visuals wanted to rename those as Bi lateral , 1st pary ad so on, as these all sit under the same heading in the table not able to rename those for the visuals.

Can you please help on this

1 ACCEPTED SOLUTION
pankajnamekar25
Super User
Super User

Hello @Rohiniv25 

 

Create calculated column 

Grouping Visual =
SWITCH(
TRUE(),
'YourTable'[Grouping] = "Bi", "Bilateral",
'YourTable'[Grouping] = "1st", "1st Party",
'YourTable'[Grouping] = "2nd", "2nd Party",
'YourTable'[Grouping]
)

 

us that on visual

 

Thanks,
 Pankaj Namekar | LinkedIn

If this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.

View solution in original post

5 REPLIES 5
Rohiniv25
New Member

Thank you. 

 

I have one more doubt, if we have group few KPI under one head under the table can we arrange them according to the visuals that is required for us 

if the group shows 2nd party first then the corp then the 1st , I need to arrange them in 1st, 2nd and corp order in a table visualization.

Deku
Super User
Super User

Finding it hard to understand the question, can you show a example of the problem and a example of the expected outcome


Did I answer your question?
Please help by clicking the thumbs up button and mark my post as a solution!

Rohiniv25_0-1743683857889.png

all these are under sla wanted to rearrage this like sla in the first then the percentage not able to move as this is filtered from the SLA

 

pankajnamekar25
Super User
Super User

Hello @Rohiniv25 

 

Create calculated column 

Grouping Visual =
SWITCH(
TRUE(),
'YourTable'[Grouping] = "Bi", "Bilateral",
'YourTable'[Grouping] = "1st", "1st Party",
'YourTable'[Grouping] = "2nd", "2nd Party",
'YourTable'[Grouping]
)

 

us that on visual

 

Thanks,
 Pankaj Namekar | LinkedIn

If this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.

Sonalika
Regular Visitor

Rohiniv25 You can rename the values in columns for visualization using a calculated column .

Use a new column Grouping_New  instead of grouping.

Use can try the following DAX formula :
Grouping_New =   SWITCH( 'YourTable'[Grouping],
"Bi", "Bi lateral",
"1st", "1st party",
"2nd", "2nd party",
'YourTable'[Grouping] 
)
Hope this helps! 😊

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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