Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all!
I have a formula I'm using to create a new column where the first letter of a string is made upper case.
Looks like this:
Solved! Go to Solution.
Try this
Region rewrite =
(
( UPPER ( LEFT ( [Website region], 1 ) ) )
& (
MID(
( 'Site appearance'[Website region] ),2,
LEN ( ( 'Site appearance'[Website region] ) )-1
)
)
)
Try this
Region rewrite =
(
( UPPER ( LEFT ( [Website region], 1 ) ) )
& (
MID(
( 'Site appearance'[Website region] ),2,
LEN ( ( 'Site appearance'[Website region] ) )-1
)
)
)
@JonSwed , Try like
Region rewrite =
(
(UPPER( left([Website region],1) ))
&
(right ( ('Site appearance'[Website region]), (LEN('Site appearance'[Website region]) -1) ) )
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 71 | |
| 50 | |
| 47 | |
| 44 |