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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

Creating custom Column based on multiple conditions and comparison

Hello there ,

 

I am looking for help, how can we create a dax expression based on multiple condition and comparison ? , below is the scenario which i wish to obtain,

so for example we have data as below:

 

IDDateSatisfactionExpectedColumn
11/1/2018SATISFIED 
11/31/2018NOT SATISFIED1
22/10/2018SATISFIED 
23/20/2018NOT SATISFIED 
24/19/2018SATISFIED 
32/10/2018SATISFIED 
44/19/2018SATISFIED 
45/20/2018SATISFIED 
46/21/2018NOT SATISFIED1
56/22/2018SATISFIED 
58/23/2018NOT SATISFIED1
68/30/2018NOT SATISFIED1
79/7/2018SATISFIED 

 

I have three columns in my Data that are ID, DATE and SATISFACTION, what i am trying to get is 4th "Expected Column" which will be calculated in this way,

lets say for ID 1, if the Value in SATISFACTION column is "NOT SATISFIED" for the Latest date in date column, then expected Column should display 1.

As we can see in ID 1, ID 4, ID 5, ID 6.

 

kindly help me out on this one please,

 

Thank you,

Regards,

Malav

1 ACCEPTED SOLUTION
v-frfei-msft
Community Support
Community Support

Hi @Anonymous,

 

We can create a calculated column using the formula to meet your requirement.

 

excepted col =
VAR maxdate =
    CALCULATE (
        MAX ( Table1[Date] ),
        FILTER ( ALL ( Table1 ), Table1[ID] = EARLIER ( Table1[ID] ) )
    )
RETURN
    IF (
        Table1[Date] = maxdate
            && Table1[Satisfaction] = "NOT SATISFIED",
        1,
        BLANK ()
    )

Capture.PNG

For more details, please check the pbix as attached.

 

https://www.dropbox.com/s/y3b8yxaurvsjkpo/Creating%20custom%20Column%20based%20on%20multiple%20conditions%20and%20comparison.pbix?dl=0

 

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

2 REPLIES 2
v-frfei-msft
Community Support
Community Support

Hi @Anonymous,

 

We can create a calculated column using the formula to meet your requirement.

 

excepted col =
VAR maxdate =
    CALCULATE (
        MAX ( Table1[Date] ),
        FILTER ( ALL ( Table1 ), Table1[ID] = EARLIER ( Table1[ID] ) )
    )
RETURN
    IF (
        Table1[Date] = maxdate
            && Table1[Satisfaction] = "NOT SATISFIED",
        1,
        BLANK ()
    )

Capture.PNG

For more details, please check the pbix as attached.

 

https://www.dropbox.com/s/y3b8yxaurvsjkpo/Creating%20custom%20Column%20based%20on%20multiple%20conditions%20and%20comparison.pbix?dl=0

 

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.
Anonymous
Not applicable

Thank you very very much for your help @v-frfei-msft, this worked just great,
i am also having one another issue calculating the cumulative average, but thats a another question on discussion, still i am posting that link, please see if you can help me figure that out as well, 

 

link: 

https://community.powerbi.com/t5/Desktop/Calculating-Cumulative-total-of-average-using-DAX-expressio...

Much thanks @v-frfei-msft

 

Regards,

Malav

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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