Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have a table with Number(1,2,3,4,5)
I need to show line if either 1 or 3 is selected
So if the selection includes 1 or 3 the line should display
Ex (1,2,4,5) Line should be displayed,
If I select only (2,4,5) or any one or two of them line should not display
@GR83 , Create a measure like below, where m1 is your existing measure
if( isblank(countrows(filter(Table, Table[Value] in {2,4,5}) ) ), [M1], blank())
Thanks for the reply, the problem I have more than 3 values in the In-Function you provided, which cannot be hardcoded, they can be derived from a different table.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.