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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
webportal
Impactful Individual
Impactful Individual

How to return the UPPER of a column?

How to return the UPPER of a column?

 

SUMMARIZECOLUMNS('Table'[Name])
 
This returns column Name, I want the UPPER of Name.
 
Thank you
1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

As I suggested on StackOverflow:

SELECTCOLUMNS (
    SUMMARIZECOLUMNS ( 'Table'[Name] ),
    "NAME", UPPER ( 'Table'[Name] )
)

 

View solution in original post

2 REPLIES 2
webportal
Impactful Individual
Impactful Individual

@AlexisOlson 

Super-effective, as always! 🙂

AlexisOlson
Super User
Super User

As I suggested on StackOverflow:

SELECTCOLUMNS (
    SUMMARIZECOLUMNS ( 'Table'[Name] ),
    "NAME", UPPER ( 'Table'[Name] )
)

 

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.

Top Solution Authors