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
x2kibail
Frequent Visitor

Conditional Column: Can't use Conditional Column Builder

I'm a beginner when it comes to query building, so all help is appreciated.

 

I need to create a column(3) that looks at column(1) and if it contains a value (a date), then it will look at the next column(2) and see if it contains a value (a date), if column(2) does not contain a value then I want column(3) to say "Unresolved", if there is a value in column(2), I want it to say "Resolved" ... if column(1) is null then I want column(3) to leave the column null or blank.

 

if column 1 is blank/null, NEW column should be blank/null

if column 1 is NOT blank and column 2 is NOT blank, NEW column = "Resolved"

if column 1 is NOT blank and column 2 IS BLANK, NEW column = "Unresolved"

1 ACCEPTED SOLUTION
v-jiascu-msft
Employee
Employee

Hi @x2kibail,

 

Try this one. Please also refer to the snapshot below.

Column =
IF (
    ISBLANK ( [Column1] ),
    BLANK (),
    IF (
        NOT ISBLANK ( [Column1] ) && ISBLANK ( [Column2] ),
        "Unresolved",
        IF (
            NOT ISBLANK ( [Column1] ) && NOT ISBLANK ( [Column2] ),
            "Resolved",
            "Unknown"
        )
    )
)

Conditional-Column

 

Best Regards,
Dale

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

View solution in original post

2 REPLIES 2
v-jiascu-msft
Employee
Employee

Hi @x2kibail,

 

Try this one. Please also refer to the snapshot below.

Column =
IF (
    ISBLANK ( [Column1] ),
    BLANK (),
    IF (
        NOT ISBLANK ( [Column1] ) && ISBLANK ( [Column2] ),
        "Unresolved",
        IF (
            NOT ISBLANK ( [Column1] ) && NOT ISBLANK ( [Column2] ),
            "Resolved",
            "Unknown"
        )
    )
)

Conditional-Column

 

Best Regards,
Dale

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

I think that did it! Thanks

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.