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
MoiraBannister
Regular Visitor

PowerBI

Good morning, still a novice with PowerBI but loving it - need some guidance

Is it possible to have 2 arguments in a conditional column - i.e. if the device type is laptop and the age is 5 = fully depreciated and if the device type is desktop and the age is 6 = fully depreciated
 
1 ACCEPTED SOLUTION

Hi @MoiraBannister ,

 

To create a custom column in power query. We can use the formula as below.

 

if [type] = "laptop" and [age] = 5 then "fully depreciated" else if [type]="desktop" and [age]=6 then "fully depreciated" else "else"

cust.PNG

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

7 REPLIES 7
v-frfei-msft
Community Support
Community Support

Hi @MoiraBannister ,

 

One sample for your reference. Here I create a calculated column as below.

Column =
IF (
    AND ( Table1[type] = "laptop", Table1[age] = 5 ),
    "fully depreciated",
    IF (
        AND ( Table1[type] = "desktop", Table1[age] = 6 ),
        "fully depreciated",
        "else"
    )
)

 

Capture.PNG

 

Pbix as attached.

 

Regards.

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Thanks so much, I am very grateful for the assistance - this is the erro I get

Capture.PNG

Hi @MoiraBannister ,

 

To create a custom column in power query. We can use the formula as below.

 

if [type] = "laptop" and [age] = 5 then "fully depreciated" else if [type]="desktop" and [age]=6 then "fully depreciated" else "else"

cust.PNG

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Thank you so much, greatly appreciated

theunissenp
Helper I
Helper I

You can simply use the option to add a conditional column in the 'add column' tab (query editor). While using this option you can add lines per condition. 

 

Power BI will write the coding for you using this option.

 

Hope this is helpfull!

 

Regards

Anonymous
Not applicable

Hi MoiraBannister,

 

This is possible to have 2 arguments in a conditional statement.

 

For an Example,

 

Column = IF(AND(PBI_Data_2[Region1]= "East", PBI_Data_2[Representative1] = "Parent"),"Fully Depriciated",

                         IF(PBI_Data_2[Region1] = "East" && PBI_Data_2[Item1] = "Pen","Fully Depriciated","Not Depriciated"))

 

You can && operator for both the conditions or use AND before and delimited by , in between both the conditions.

 

I think, this would be helpful for you.

 

Regards,

Pradeep

Thank you so much Capture.PNG

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.