Forum Discussion

Applicable88's avatar
Applicable88
Impactful Individual
5 years ago
Solved

filter empty fields within true/false column

Hello,   I have a table like this: Status Order True 1234 false 1235 True 1236 false 1237   1238   1239   1240   I want to make a calculated column this way: ...
  • parry2k's avatar
    5 years ago

    Applicable88 yes it matters, check this post Handling BLANK in DAX - SQLBI

     

    Also, you can simply your expression:

     

    if ( 'Table'[Flag]==blank() || 'Table'[Flag]= False(), "active",  "inactive")

     

    Check my latest blog post Comparing Selected Client With Other Top N Clients | PeryTUS  I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

    Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.

  • v-robertq-msft's avatar
    5 years ago

    Hi, Applicable88 

    According to your description, I can roughly understand your requirement, you want the column value to be “active” when the status is false and “inactive” when the status is true, right? I think you can simply achieve this using the SWITCH() function in DAX, You can try this DAX formula:

    Column =
    
    SWITCH(
    
        [Status],
    
        FALSE(),"active",
    
        TRUE(),"inactive",
    
        "inactive")

     

    And you can get what you want.

     

    More info about the SWITCH() function in DAX

     

    You can download my test pbix file below

    Thank you very much!

     

    Best Regards,

    Community Support Team _Robert Qin

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