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
jamieham
Helper II
Helper II

Replacing Text in a column with a number

I want to replace the letter in a column with a number but I'm not sure how to do it in power bi.

 

Any help would be appreciated.

 

Column.          Replace

A                         1

B                         2

C                         3

D                         4

E                         5

etc

1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

Try this calculated column. Add the remaining arguments (C, D, etc.).

 

Letter =
SWITCH ( Table[Column],
"A", 1,
"B", 2
)





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

4 REPLIES 4
Ashish_Mathur
Super User
Super User

Hi,

This calculated column formula will work

=UNICODE(Data[Text])-64

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
mahoneypat
Employee
Employee

You could do this in the query editor with a custom column with this formula

 

=List.PositionOf({"A".."Z"}, [LetterColumn])+1

 

If this works for you, please mark it as the solution.  Kudos are appreciated too.  Please let me know if not.

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


DataInsights
Super User
Super User

Try this calculated column. Add the remaining arguments (C, D, etc.).

 

Letter =
SWITCH ( Table[Column],
"A", 1,
"B", 2
)





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Revised column name:

 

Number =

SWITCH ( Table[Column],
"A", 1,
"B", 2
)





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




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.