Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

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
AlB
Community Champion
Community Champion

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
Community Champion
Community Champion

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)
AlB
Community Champion
Community Champion

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
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.