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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I'm using the MS Text Filter custom visual which pulls from a text column "phrases". I have a table visual to display the phrases. Does any one know how I could make this table visual showing no rows (i.e. blank) by default unless something is entered into the text filter visual? Thanks!
Solved! Go to Solution.
Hi @badger123 ,
One work around is to create the following measure:
Filter =
IF (
COUNTROWS ( ALLSELECTED ( Table1[Words] ) )
< CALCULATE ( COUNTROWS ( Table1 ); ALL ( Table1[Words] ) );
1;
0
)
Then add this measure to your visual filters of the table and select the option of Value = 1.
Check PBIX attach
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @badger123 ,
One work around is to create the following measure:
Filter =
IF (
COUNTROWS ( ALLSELECTED ( Table1[Words] ) )
< CALCULATE ( COUNTROWS ( Table1 ); ALL ( Table1[Words] ) );
1;
0
)
Then add this measure to your visual filters of the table and select the option of Value = 1.
Check PBIX attach
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsThe Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 142 | |
| 123 | |
| 102 | |
| 79 | |
| 54 |