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
Hey all,
I just want show to show the datas in the table, when the power bi user is tiping the name of a street, otherwise it should not show any information.
I have an example file. Thank you for help.
Solved! Go to Solution.
@azaterol , Create a measure like this and use that in visual level filter
measure = calculate(if(isfiltered(Table[Street]), 1 , Blank() ), allselected())
check value 1 or non blank
@azaterol , Create a measure like this and use that in visual level filter
measure = calculate(if(isfiltered(Table[Street]), 1 , Blank() ), allselected())
check value 1 or non blank
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.