Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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