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
Anshenterprices
Helper IV
Helper IV

Based on the slicer selection lookup the value

Hi TEam,

Source data

Table1 Table2
categoryvalue categoryindex id
A231 A1
B323 B1
c234 c1
D535 D1
E543 E0
     
     
slicer    
Table1    
category    


once i select category from slicer then only it should print index id and if it is zero then false


1 ACCEPTED SOLUTION
Samarth_18
Community Champion
Community Champion

You can create a measure with below code

 

Measure 4 =
VAR selected_category =
SELECTEDVALUE ( Table1[CATEGORY] )
VAR result =
CALCULATE ( MAX ( Table2[index] ), Table2[CATEGORY] = selected_category )
RETURN
IF ( result = 0, FALSE (), result )
 
when index is 0
Samarth_18_0-1626110198663.png

when index is 1

Samarth_18_1-1626110224351.png

 

 

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

View solution in original post

1 REPLY 1
Samarth_18
Community Champion
Community Champion

You can create a measure with below code

 

Measure 4 =
VAR selected_category =
SELECTEDVALUE ( Table1[CATEGORY] )
VAR result =
CALCULATE ( MAX ( Table2[index] ), Table2[CATEGORY] = selected_category )
RETURN
IF ( result = 0, FALSE (), result )
 
when index is 0
Samarth_18_0-1626110198663.png

when index is 1

Samarth_18_1-1626110224351.png

 

 

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

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.