Forum Discussion

eriku's avatar
eriku
Regular Visitor
3 years ago
Solved

Converting numbers to text

Hello!   Background:   I am using Dynamics 365 data, primariliy opportunity data - the opportunity statuses include open, won, and lost. The issue I'm having is that these values appear as 0, 1, ...
  • amitchandak's avatar
    3 years ago

    eriku , You have to create a new column in the power query of DAX

     

    In DAX

     

    Switch([Status],

    0, "Open",

    1, "Won",

    2, "Closed"

    )