Forum Discussion

carolinapm's avatar
carolinapm
Regular Visitor
6 years ago
Solved

Problems with switch

Hello!!   I have a problem with a table. I need a measure that looks for an id of a column, in another table, and depending on the result, of one value or another. The formula is this: =SWITCH(TR...
  • v-lid-msft's avatar
    6 years ago

    Hi carolinapm ,

     

    If the two column values are in the same table and put into a table visual, you can use the following measure:

     

     

    =
    SWITCH (
        TRUE ();
        SELECTEDVALUE ( '252'[Id_bo] ) = SELECTEDVALUE ( '252'[Id_WebAgendas] ); 1;
        0
    )

    OR

     

     

    =
    IF (
        SELECTEDVALUE ( '252'[Id_bo] ) = SELECTEDVALUE ( '252'[Id_WebAgendas] );
        1;
        0
    )

     


    If it doesn't meet your requirement, kindly share your sample data and expected result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.

     

    Best regards,

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