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! It's time to submit your entry. Live now!
Solved! Go to Solution.
You’re right by default you cannot force a field parameter slicer to fall back automatically to one item (like a dummy column) when the user clears all selections.
Problem: When no column is selected in the Preselected Slicer, your table shows all columns—but you want it to show none.
Fix: Create a DAX measure like this
IsFieldSelected = IF(HASONEVALUE('Field Parameter Table'[Field]), TRUE(), FALSE())
Then apply it as a visual-level filter on the table: show the table only when IsFieldSelected = TRUE.
In Power BI, field parameters always show all fields when no slicer value is selected — that’s the default design. That’s why in your case, when nothing is chosen in the Preselected Slicer, your table shows every column.
To work around this and show no columns instead of all, you can:
Add a dummy field to your field parameter (e.g., "Blank" with an empty measure).
In your Preselected Slicer, set "Blank" as the default selected value.
Adjust your table so that when "Blank" is selected, it only shows that empty column.
→ Result: no real columns are displayed until the user makes a choice.
That way, if nothing is selected (or if "Blank" is the default), your table won’t show unintended columns.
Hello @EricLetourneur_
when using a field parameter with a preselected slicer, the default behavior is that if no item is selected, all fields appear in the table. To avoid this, you can add a dummy column into your field parameter. The dummy column can either display a static message like “No column selected” or simply return BLANK(), which makes the table look empty. By including this dummy option in the parameter and setting it as the fallback, the table will show only the dummy column instead of expanding with all fields whenever the slicer has no selection
thank you for your answer.
Can we force the selection of this dummy column when no column is selected in the pre selected slicer ?
I think no...
You’re right by default you cannot force a field parameter slicer to fall back automatically to one item (like a dummy column) when the user clears all selections.
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 40 | |
| 38 | |
| 21 | |
| 21 |
| User | Count |
|---|---|
| 141 | |
| 103 | |
| 63 | |
| 36 | |
| 35 |