cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
bug_rohit
New Member

DAX query, Creating new coulmns

I have one column containing three type of values , i want to create three new columns each column containing distinct type of value which were there in first column, and having zero in all other cells .

Sample of data 

bug_rohit_0-1691518441486.png

 

2 REPLIES 2
Manoj_Nair
Solution Supplier
Solution Supplier

@bug_rohit- Please check this out, let me know if this works. If this fix your problem, please tick this a solution and a thumps up.

 

COL2 = 
IF(
    TBL1[COL1] = "#NA",
    "#NA",
    "0"
)

COL3 = 
IF(
    TBL1[COL1] = "B",
    "B",
    "0"
)

COL4 = 
IF(
    TBL1[COL1] = "C",
    "C",
   "0"
)

ToddChitt
Solution Sage
Solution Sage

Since you are in the Power Query forum, this is a Power Query answer. You could probably also do something similar in DAX.

Create a Custom Column, named "Col 2" with a literal value of "0". Create another Custom Column named "Col 3" with this formula: if [Col1] = "B" then "B" else 0. Create Custom Column "Col4" with similar logic.

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors