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
erhan_79
Post Prodigy
Post Prodigy

DAX formula help

Dear All ; 

 

i need your kind helps about below issue 

 

i have column A with numbers and i want to create a Column B as below : 

 

If Column A is 0 , Column B will 0 

İf column A is 1,2,3,4,5 , column B will be 5 

If column A is 6,7,8,9,10,11,12,13,14,15 , column B will be 15 

İf coumn A is 16 and ıncludes higher number , column B will be 30 

 

also i want like  that for minus situation too , 

 

i added below image to make more clear 

 

thanks for your kind supports Capture.JPG

 

 

 

 

1 ACCEPTED SOLUTION

Hi @erhan_79

 

Change "ColumnA" for the exact name of your column. Seems to be "Column A"

Change "Table1" for the exact name of your table

Just use "Column B" instead of Table1[ColumnB] when creating the new column

 

View solution in original post

4 REPLIES 4
AlB
Super User
Super User

Hi @erhan_79

Try this:

 

Table1[ColumnB] = SWITCH(TRUE(),
          Table1[ColumnA]=0, 0,
          Table1[ColumnA]>=1 && Table1[ColumnA]<=5, 5,
          Table1[ColumnA]>=6 && Table1[ColumnA]<=15, 15,
          Table1[ColumnA]>=16, 30,
          Table1[ColumnA]<=-1 && Table1[ColumnA]>=-5, -5,
          Table1[ColumnA]<=-6 && Table1[ColumnA]>=-15, -15,
          Table1[ColumnA]<=-16, -30)

Hi @erhan_79

 

Change "ColumnA" for the exact name of your column. Seems to be "Column A"

Change "Table1" for the exact name of your table

Just use "Column B" instead of Table1[ColumnB] when creating the new column

 

thank you so much @AlB , great job , it is working.

Dear  @AlB;

 

thanks for your support but i got an error while creating column, i am new on power bI , could you pls share Pbix file ifit is possible that you created 

Capture.JPG

 

 

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.