Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hey guys,
I have a column that looks like this:
State
AL
Alabama
TN
Tennessee
AL
AL
VA
VA
Alabama
Virgina
Tennessee
How do I create one column that has the full name for every state?
Solved! Go to Solution.
@Anonymous
Import the data from http://www.stateabbreviations.us/ via Web
& go Edit Queries use > Home Tab > Merge Queries
#"Added Conditional Column" = Table.AddColumn(#"Duplicated Column", "State", each if [state old] <> [#"state new"] then [#"State New"] else null )
Regards,
Chetan K
@Anonymous
Import the data from http://www.stateabbreviations.us/ via Web
& go Edit Queries use > Home Tab > Merge Queries
#"Added Conditional Column" = Table.AddColumn(#"Duplicated Column", "State", each if [state old] <> [#"state new"] then [#"State New"] else null )
Regards,
Chetan K
You could look at the length of the value. If 2, then do a look up, else, show original value. This should be pretty easy to do in DAX.
Treb Gatte | MVP | TumbleRoad.com | PowerBICertification.com
As @trebgatte mentioned, you'll need to have some master lookup table for the states abbreviation and full name. Then you can create a new calculated column that checks the length, and pulls the [StateFullName], otherwise it defaults to the existing value.
New to Power BI & Data: Can you provide the formula you would use to calculate length and pull state name. Once I see it I can make the connection to how it works.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
80 | |
76 | |
60 | |
36 | |
33 |
User | Count |
---|---|
91 | |
60 | |
59 | |
49 | |
45 |