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

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(TRUE();[Id_bo]='252'[Id_WebAgendas];1;0)

but it gives me an error: The value of the 'Id_WebAgendas' column in table '252' cannot be determined in the current context.

el id es un numero . Es una concatenación de distintos valores para crear un id unico (fecha, numero de empleado y codigo de tarea)

 

Thank you in advance

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

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.

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.

View solution in original post

3 REPLIES 3
v-lid-msft
Community Support
Community Support

Hi @carolinapm ,

 

How about the result after you follow the suggestions mentioned in my original post?Could you please provide more details about it If it doesn't meet your requirement?

 

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.

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.
v-lid-msft
Community Support
Community Support

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.

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.
amitchandak
Super User
Super User

Try creating a column instead of a measure.  Use Add column option.

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.