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.
Below is the requirement:
1. Slicer to search Account # (Slicer shouldn't show the list of Account # to select) and user can copy and paste the Account # and hit enter to search and view report results
2. Length of Account # could vary from 6-12
Current State:
1. Text filter visual used in the report however it uses "contains" instead of "in"/"equals" and doesn't perform an exact match based on the input. e.g.
Slicer value = A1 returns results like
AA1
A1
BA1 etc..
It should return A1 only.
2. I tried to use SELECTEDVALUE ,CONCATENATEX to get the list of values by length in ascending order where COUNTROWS (Slicer[Account])>1 and fetch the 1st value from the delimited text but it doesn't seem to work for all scenarios.
The 2nd option is to customise the Text Filter custom visual.
It would be greatly appreciated if I can get some guidance around the above options.