Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Converting State Abbreviations

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 ever...
  • chethan's avatar
    8 years ago

    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